Terminates this process and returns an exit code to the operating system.
public:
static void Exit(int exitCode);
public static void Exit(int exitCode);
static member Exit : int -> unit
Public Shared Sub Exit (exitCode As Integer)
Parameters
The exit code to return to the operating system. Use 0 (zero) to indicate that the process completed successfully.
ExceptionsThe caller does not have sufficient security permission to perform this function.
RemarksFor the exitCode
parameter, use a non-zero number to indicate an error. In your application, you can define your own error codes in an enumeration, and return the appropriate error code based on the scenario. For example, return a value of 1 to indicate that the required file is not present, and a value of 2 to indicate that the file is in the wrong format. For a list of exit codes used by the Windows operating system, see System Error Codes in the Windows documentation.
Calling the Exit method differs from using your programming language's return
statement in the following ways:
Exit always terminates an application. Using the return
statement may terminate an application only if it is used in the application entry point, such as in the Main
method.
Exit terminates an application immediately, even if other threads are running. If the return
statement is called in the application entry point, it causes an application to terminate only after all foreground threads have terminated.
Exit requires the caller to have permission to call unmanaged code. The return
statement does not.
If Exit is called from a try
or catch
block, the code in any finally
block does not execute. If the return
statement is used, the code in the finally
block does execute.
If Exit is called when code in a constrained execution region (CER) is running, the CER will not complete execution. If the return
statement is used, the CER completes execution.
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide. In this articleWas this page helpful?
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4