1
Answer

How can I fetch the form inside a file created in solution explorer c#

G M

G M

2y
592
1

When calling a form in solution explorer I use:
           
  Form1 go= new Form1();
             go.ShowDialog();

But what code should I write to fetch the form in the file?
Exp:
Form2 go2= new NewFolder.Form2();
             go2.ShowDialog();

Answers (1)