简体   繁体   中英

How to exit a program with an exit code: C#

How to exit a program with an exit code in C#? In java it would be System.exit(int code);

Either:

  • Declare your Main function as returning int , and return a value from it, or
  • Call Environment.Exit(int)

Returning a value from Main is a little nicer than exiting the process in the middle of a method, but this is presumably the same advice that applies to Java, C or C++.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM