how to close window form in c# code example
Example 1: how to exit a program in c#
Application.Exit();
Example 2: c# how to exit program
System.Environment.Exit(1);
Example 3: how to close a form c#
this.Close();
Application.Exit();
System.Environment.Exit(1);
this.Close();