Difference between Environment.Exit and simple return 2 from Main

后端 未结 3 1679
刺人心
刺人心 2021-02-12 17:31

From outside of the application, is there any difference between

...
Environment.Exit(2)

and

static int Main()
{
    ...
    re         


        
相关标签:
3条回答
  • 2021-02-12 18:08

    Environment.Exit(2) can be used everywhere. return 2 only within the Main() function.

    0 讨论(0)
  • 2021-02-12 18:11

    The most obvious difference is that you can call Environment.Exit from anywhere in your code. Aside from that:

    • Main finishing won't terminate the process if there are other foreground threads executing; Environment.Exit will take down the process anyway.
    • Environment.Exit terminates the process without unwinding the stack and executing finally blocks (at least according to my experiments). Obviously when you return from Main you're already at the top level as far as managed code is concerned.
    • Both give finalizers a chance to execute before the process really shuts down
    • Environment.Exit demands the appropriate security permission, so won't work for less trusted apps.

    Having seen the question update, I'm not entirely sure what you mean. In both cases the process will just exit with a code of 2...

    0 讨论(0)
  • 2021-02-12 18:16

    If you are doing a Unit Test and calling Main

    Program.Main(args);
    

    then Environment.exit will always reflect a failure. Where as using return will work as expect.

    0 讨论(0)
提交回复
热议问题