几种输出的区别:
1、Console.WriteLine(“输出到控制台窗口,即命令提示符窗口”);
2、System.Diagnostics.Debug.WriteLine(“打印信息到输出窗口,但是只能在Debug版本运行,到了release版本中,Debug类的函数都会被忽略”);
3、System.Diagnostics.Trace.WriteLine(“打印信息到输出窗口,可以同时在Debug和release版本运行”);
注:第2、3点都必须在Debug模式下才能打印信息到输出窗口
附上Debug与Trace的区别:https://www.cr173.com/html/25103_1.html
标签:输出,窗口,打印信息,C#,System,VS,WriteLine,Debug From: https://www.cnblogs.com/unicornsir/p/16833253.html