for exapmle I have something like this:
public class Form1:form
{
......
static void Main()
{
Form1 FormN = new Form1();
Application.Run(FormN);
}
.....
private void top()
{
FormN.Size = new Size(30;56);
}
}
I would like to use the FormN in a new form but if I declare it outside the main, I can not see it in main, and if I declare it in main I con not see it outside the main.
What should I do?