exit c# console application code example
Example 1: c# exit console
static void Main()
{
//do stuff
Environment.Exit(1);// exit
}
Example 2: how to exit application c# console
System.Environment.Exit(0);
// or
Environment.Exit(0);
Example 3: c# exit application
// In a console application:
Environment.Exit(0);
// In a WPF application:
Close();
Example 4: c# how to terminate console application
System.Envrionment.Exit(0);
//or
Envrionment.Exit(0);
Example 5: c# application exit
private void button1_Click(object sender, EventArgs e) // this is your button double click your button and you will find it
{
Application.Exit();
}