G M

G M

  • 1.6k
  • 37
  • 488

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

May 26 2022 8:18 AM

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)