I'm new to c# and I was wondering if someone could tell me how to create a global module for changing a form like you would do in vb, and then how to call that module.
Thanks
Update:
Ok so i have multiple forms and instead of writing the same 2 lines over and over, which are..
Form x = new Form1();
x.Show();
Is it possible to add this to a class to make it easier. How do i do it? never made a class before. got the class up but unsure how to write the code.