What is the correct way to set the exit code from within a console
application? Currently we do:
Public Function Main() As Integer
...
Environment.Exi tCode = ...
Return Environment.Exi tCode
End Function
Should we use Environment.Exi tCode And/Or return the exit code?
Thanks,
Mythran
application? Currently we do:
Public Function Main() As Integer
...
Environment.Exi tCode = ...
Return Environment.Exi tCode
End Function
Should we use Environment.Exi tCode And/Or return the exit code?
Thanks,
Mythran
Comment