System.Diagnostics.Debug.WriteLine
用于跟踪。
Funilly文件C:\Users\Public\Documents\UserNameFromProgramContext\ProgramName.asserts
是在我的机器上创建的,但不是在另一个开发者的文件上创建的。
我只想在VS的输出窗口输出Debug.WriteLine
。
在哪里可以配置Debug.WriteLine
写入的位置?
答案 0 :(得分:4)
简单:
Debug.Listeners.Add(new TextWriterTraceListener("c:\\temp\\test.txt"));
Debug.AutoFlush = true;
Debug.WriteLine("test");
所以只需使用Listeners集合来操作调试数据写入的位置