我无法让Debug或Trace在Visual Studio 2010 C#Express中工作。我有"将所有输出重定向到立即窗口" - 未选中。什么都没有输出窗口。
using System.Diagnostics;
Trace.Write("Hello World");
Trace.WriteLine("Hello World");
Debug.Write("Hello World2");
Debug.WriteLine("Hello World2");
答案 0 :(得分:18)
确保选中页面Build上项目属性中的“Define DEBUG constant”和“Define TRACE constant”复选框。
答案 1 :(得分:6)
右键单击输出窗口,确保选中“程序输出”。