Let's say I have a form named Form1 with textBox and button in it.
I want to get the textBox value from another class on button click. I'm trying to do it like this, but it doesn't work:
class Main
{
public void someMethod()
{
Form1 f1 = new Form1();
string desiredValue = f1.textBox.Text;
}
}
Forgive me for the dumb question, but I'm pretty new in C# and can't get this thing to work.
Form1it will have the default value ofstring.Empty(i.e. "").