I have two forms, and I need pass a value from form1.textbox1 to form2.variable
Form1:
string Ed = \"\", En = \"\"; public string En1 { get { r
If you describe value as static then you can access it directly in Form1 and you can access it from Form2 :
static public string Text_; string PassedValue_=Form1.Text_;