2

简单来说,我只是在 Web 应用程序中添加了一行:

    void Application_Start(object sender, EventArgs e)
    {
        // Code that runs on application startup
        Console.WriteLine("Hello, world!");
    }

我想要的是阅读“你好,世界!” 在 Visual Studio 2010 的输出窗口中,但失败了,这是怎么回事?

在此处输入图像描述

我试过:通过工具>选项>项目和解决方案>构建和运行更改详细程度,并更改“MSBuild项目构建输出详细程度”的值,但没有任何效果。

4

3 回答 3

11

如果您想在“调试”窗口中查看结果,请使用Debug.WriteLine而不是。Console.WriteLine

using System.Diagnostics;

void Application_Start(object sender, EventArgs e)
{
    Debug.WriteLine("Hello, world!");
}
于 2011-11-22T14:34:10.273 回答
1

您应该使用Debug.WriteLine("Hello world")(位于 System.Diagnostics 命名空间中)输出到调试窗口。

于 2011-11-22T14:33:35.603 回答
1

您可以尝试TextWriterTraceListener。看看 MSDN post- Walkthrough: Integrating ASP.NET Tracing with System.Diagnostics Tracing

于 2011-11-22T14:39:28.790 回答