为什么我在输出窗口中看到这些线程消息?

时间:2013-11-18 13:36:31

标签: asp.net-mvc visual-studio

我在默认的MVC 5项目(VS2013)中观看我的输出窗口,并注意到一些消息。到底是怎么回事?我没有为我的应用添加任何线程。

The thread 0x7dc0 has exited with code 259 (0x103).
The thread 0x25b8 has exited with code 259 (0x103).
The thread 0x7418 has exited with code 259 (0x103).
The thread 0x13a8 has exited with code 259 (0x103).

1 个答案:

答案 0 :(得分:1)

这只是调试信息。您可以通过右键单击输出窗口并取消选中线程结束消息来关闭它。

http://msdn.microsoft.com/en-us/library/bs4c1wda.aspx

In addition to program out from your application, the Output window can display the information about:

Modules the debugger has loaded or unloaded.

Exceptions that are thrown.

Processes that exit.

Threads that exit.

应用程序可能有很多并行运行的线程。有些是由你运行的,编码器,有些是由框架类运行的。这些也可能来自您项目中的任何库。我在我正在处理的当前项目的输出窗口中得到相同的结果......这不会打扰我。

相关问题