写入Visual Studio的输出窗口?
我试图写出一条消息到输出窗口进行调试。 我搜索了一个像Java的system.out.println("")
这样的函数。 我试过Debug.Write
, Console.Write
和Trace.Write
。 它不会给出错误,但它也不会打印任何内容。
选中“定义DEBUG常量”和“定义TRACE常量”选项。
菜单工具→选项→调试→“将所有输出窗口文本重定向到立即窗口”选项未被选中。
配置:活动(调试)
注意:如果相关,我使用向导创建了一个项目作为“Windows窗体应用程序”。 我不知道在哪里看。
添加System.Diagnostics
命名空间,然后您可以使用Debug.WriteLine()
快速将消息打印到IDE的输出窗口。 有关更多详情,请参阅以下内容:
这将写入调试输出窗口:
using System.Diagnostics;
Debug.WriteLine("Send to debug output.");
使用:
System.Diagnostics.Debug.WriteLine("your message here");
链接地址: http://www.djcxy.com/p/24395.html