Violeta Popa

Violeta Popa

  • NA
  • 137
  • 161.3k

acces variable from another method

Apr 11 2013 3:50 PM
Hi..How can i acces in a method a variable from another method? There is my code:

private void modificaCategorie_Load(object sender, EventArgs e)
{
        string text=textBox1.Text;
}

private void button1_Click(object sender, EventArgs e)
{
        if(text=="abc")
}

Answers (1)