This question already has answers here:
What's the difference between Console.WriteLine() vs Debug.WriteLine()?

(3个答案)


7年前关闭。




在.NET中,调试代码时,使用Debug.PrintConsole.WriteLine有什么区别吗?

最佳答案

是的,Console.WriteLine



Debug.Print



其中 Listeners Debug中的列表。

一个更好的例子可能是图片。请注意Console.WriteLine最终出现在控制台中,而Debug.Print最终出现在Visual Studio的“输出”窗口中

关于c# - .NET中的 “Debug.Print”和 “Console.WriteLine”有什么区别? [复制],我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/18871505/

10-13 08:23