如何在Visual Studio 2010的“输出”窗口中读取Console.WriteLine()的结果

时间:2011-11-22 14:30:55

标签: asp.net visual-studio-2010 console.writeline

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

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

我想要的是读“Hello,world!”在Visual Studio 2010的输出窗口上,但失败了,有什么不对?

enter image description here

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

3 个答案:

答案 0 :(得分:10)

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

using System.Diagnostics;

void Application_Start(object sender, EventArgs e)
{
    Debug.WriteLine("Hello, world!");
}

答案 1 :(得分:1)

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

答案 2 :(得分:1)