how to exit in c# code example
Example 1: exit programm c#
Application.Exit();
Example 2: c# how to exit program
System.Environment.Exit(1);
Example 3: exit a method c#
private void Test(int condition)
{
if(condition)
return; // Exit the methode
// Here code if condition == false
}
Example 4: how to close an application in c#
this.Close();
//This only close the current form or window that you are using.
Example 5: c# program exit
System.Windows.Forms.Application.ExitThread( )