Answers for "console application quit c#"

C#
3

how to exit application c# console

System.Environment.Exit(0);
// or
Environment.Exit(0);
Posted by: Guest on October-02-2020
2

c# exit application

// In a console application:
Environment.Exit(0);
// In a WPF application:
Close();
Posted by: Guest on September-16-2020

Code answers related to "console application quit c#"

C# Answers by Framework

Browse Popular Code Answers by Language