【发布时间】:2011-10-02 09:38:18
【问题描述】:
在调试时,我在日志中打印了很多行:
System.Diagnostics.Debugger.Log(0, null, responseFromServer);
System.Diagnostics.Debugger.Log(0, null, t[0]);
....
它们都在同一行打印。我怎样才能让它们在单独的行中打印?
我尝试过使用
System.Diagnostics.Debugger.Log(0, null, t[0]+"\n");
但是,它没有用。任何帮助将不胜感激 。谢谢
【问题讨论】:
标签: c# system.diagnostics