如何配置Debug.WriteLine输出文件?

时间:2013-11-06 06:54:00

标签: c#

System.Diagnostics.Debug.WriteLine用于跟踪。

Funilly文件C:\Users\Public\Documents\UserNameFromProgramContext\ProgramName.asserts是在我的机器上创建的,但不是在另一个开发者的文件上创建的。

我只想在VS的输出窗口输出Debug.WriteLine

在哪里可以配置Debug.WriteLine写入的位置?

1 个答案:

答案 0 :(得分:4)

简单:

Debug.Listeners.Add(new TextWriterTraceListener("c:\\temp\\test.txt"));
Debug.AutoFlush = true;
Debug.WriteLine("test");

所以只需使用Listeners集合来操作调试数据写入的位置