I have a trivial console app in .net. It's just a test part of a larger application. I'd like to specify the "exit code" of my console app. How do I do this?
Thanks!
|
|
|
You can return it from |
|||||||||
|
|
Not an answer - the return int's have already gotten that...but a plea for sanity. Please, please define your exit codes in an enum, with Flags if appropriate. It makes debugging and maintenance so much easier (and, as a bonus, you can easily print out the exit codes on your help screen - you do have one of those, right?).
|
|||||||||||||||||
|
|
|||||||
|
http://msdn.microsoft.com/en-us/library/system.environment.exitcode.aspx |
|||
|
|
|
If you are going to use the method that is suggested by David, you should also take a look at the [Flag] Attribute. This allows you to do bit wise operations on the enums.
Then
would be 16 + 32. :) |
|||
|
|
|
There are three methods that you can use to return an exit code from a console application.
An important standard that should be observed is that On a related topic, consider using an enumeration to define the exit codes that your application is going to return. The FlagsAttribute will allow you to return a combination of codes. Also, ensure that your application is compiled as a 'Console Application'. |
|||
|
|
|
Use ExitCode if your main has a void return signature, otherwise you need to "set" it by the value you return.
|
|||
|
|
|
Just return the appropiate code from main.
|
|||||||
|
|
The enumeration option is excellent however can be improved upon by multiplying the numbers as in:
In the case of multiple errors, adding the specific error numbers together will give you a unique number that will represent the combination of detected errors. For example, an errorlevel of 6 can only consist of errors 4 and 2, 12 can only consist of errors 4 and 8, 14 can only consist of 2, 4 and 8 etc. |
|||
|
|