Answers for "how to exit program c# console"

C#
6

c# exit console

static void Main()
{
	//do stuff
  
	Environment.Exit(1);// exit
}
Posted by: Guest on March-02-2020
2

c# how to exit program

System.Environment.Exit(1);
Posted by: Guest on June-01-2020

C# Answers by Framework

Browse Popular Code Answers by Language