How can I use variables which I defined in Form() function in a button click event?
public Form2(string a, string b)
{
int something=4;
int something=5;
}
public void hButton_Click(object sender, EventArgs e)
{
}
i want to use the variables something and something2 in that gButton_Click event. How can I do that?