1

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

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

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

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

4

1 回答 1

4

简单的:

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

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

于 2013-11-06T07:05:36.713 回答