我正在为Windows任务调度程序编写一个控制台程序来运行。我的Main()
方法的返回类型为int
,退出时返回不同的数字以指示执行结果,我可以在.BAT
脚本中以%errorlevel%
的形式访问。
然而,在VS2015中调试时,我做了
return 255;
我总是从VS2015的输出窗口获取:
The program '[43560] Foo.vshost.exe' has exited with code 0 (0x0).
现在,如果我希望“输出”窗口显示我的程序的退出代码,我必须执行Application.Exit(255)
才能显示
The program '[24400] Foo.vshost.exe' has exited with code 255 (0xff).
如果我使用return语句或%errorlevel%
在CMD.exe
中运行程序,Environment.Exit()
被正确设置为255会有什么奇怪的。
所以我的问题是
Main()
的返回值与Environment.ExitCode
有些不同吗?
在VS2015中轻松找出Main()
方法的返回值的方法是什么?
退出控制台程序时,Environment.Exit()
是否比简单的返回语句更受欢迎?因为退货声明更符合我的口味。
有人可以告诉我这背后的故事吗?感谢。
答案 0 :(得分:6)
Main()的返回值是否与Environment.ExitCode有些不同?
不,他们是一样的,去同一个地方。您可以通过试验一个只返回-1或将Environment.ExitCode
设置为-1的控制台应用程序来看到这一点。您将看到使用哪种方法并正确设置%ERRORLEVEL%
。
在VS2015中轻松找出Main()方法的返回值的方法是什么?
首先,快速关注似乎正在发生的事情。这是使用默认项目设置创建的控制台应用程序的堆栈跟踪:
TestApp.exe!TestApp.Program.Main(string[] args)
[Native to Managed Transition]
[Managed to Native Transition]
mscorlib.dll!System.AppDomain.ExecuteAssembly(string assemblyFile, System.Security.Policy.Evidence assemblySecurity, string[] args)
Microsoft.VisualStudio.HostingProcess.Utilities.dll!Microsoft.VisualStudio.HostingProcess.HostProc.RunUsersAssembly()
mscorlib.dll!System.Threading.ExecutionContext.RunInternal(System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, object state, bool preserveSyncCtx)
mscorlib.dll!System.Threading.ExecutionContext.Run(System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, object state, bool preserveSyncCtx)
mscorlib.dll!System.Threading.ExecutionContext.Run(System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, object state)
mscorlib.dll!System.Threading.ThreadHelper.ThreadStart()
请注意VS主机进程在那里。禁用VS主机进程后,堆栈跟踪(具有相同选项)如下所示:
TestApp.exe!TestApp.Program.Main(string[] args)
如果您查看reference source中ThreadHelper.ThreadStart
的定义,您会看到它定义为:
internal void ThreadStart(object obj)
似乎这个void返回被用作进程返回值,或者上面的其他方法之一正在消耗返回值并吞下它。
如果您更改项目配置并禁用托管过程,那么您将获得如下输出:
The program '[7992] TestApp.exe' has exited with code -1 (0xffffffff).
如你所料。要禁用托管过程,请转到项目属性,然后在调试选项卡上取消选中“启用Visual Studio托管过程”
退出控制台程序时,Environment.Exit()是否比简单的return语句更受欢迎?因为回报声明更符合我的口味。
无论你喜欢什么。正如Jeppe Stig在评论中所指出的,有关差异的更多信息,请参阅Environment.Exit
的文档