Hi.
I want to get var1 variable in button1_Click function but its getting null in there. How can I do that?
public string var1;
public void func()
{
while (true)
{
...
string var1 = "this is example";
}
private void button1_Click(object sender, EventArgs e)
{
label2.Text = var1; // -----> var1's value is null in here.
}
Loading
theLizardPosted Dec 27, 2009, 7:21 PM
The one in the function exists ONLY in the function that is why you are getting null outside of the function.
do one or the other.
var1 = "this example";
or
public string func() return(var1);
yokzuPosted Dec 27, 2009, 7:38 PM