InterviewSolution
Saved Bookmarks
| 1. |
Is There An Equivalent Of Exit() For Quitting A C# .net Application? |
|
Answer» Yes, you can USE System.Environment.Exit(INT exitCode) to exit the application or Application.Exit() if it's a WINDOWS Forms APP. Yes, you can use System.Environment.Exit(int exitCode) to exit the application or Application.Exit() if it's a Windows Forms app. |
|