Open another form with csharp Winforms

Code Example - Open another form with csharp Winforms

                
                        Form myForm = new myForm();
myForm.Show();

//If you want to close the current form after the new one opens, then write in a new line, "this.Close();"