Is there an equivalent of exit() for quitting a C# .NET application?
By admin on Jan 20, 2007 in C# Interview Questions, Technical
Yes, you can use System.Environment.Exit(int exitCode) to exit the application or Application.Exit() if it’s a Windows Forms app.


