What is the command to exit a console application in C#?
c#, console-application, exit
Solution
You can use `Environment.Exit(0);` and `Application.Exit`
`Environment.Exit(0)` is cleaner.
Problem
What is the command in C# for exiting a console application?