how to close application in c# code example
Example 1: how to close an application in c#
this.Close();
//This only close the current form or window that you are using.
Example 2: c# program exit
System.Windows.Forms.Application.ExitThread( )
Example 3: c# close window
Application.Exit();