Difference between Environment.Exit and simple return 2 from Main

Viewed 4267

From outside of the application, is there any difference between

...
Environment.Exit(2)

and

static int Main()
{
    ...
    return 2;
}

?

3 Answers
Related