acces variable from another method
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")
}