Where does Console.WriteLine go in Debug? - Stack Overflow most recent 30 from stackoverflow.com2009-12-07T16:14:15Zhttp://stackoverflow.com/feeds/question/250404http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/250404/where-does-console-writeline-go-in-debug0Where does Console.WriteLine go in Debug?ripper2342008-10-30T14:42:59Z2008-10-30T15:15:55Z
<p>I found <a href="http://stackoverflow.com/questions/122778/capture-console-output-for-debugging-in-vs">this question</a>, but what I want to know is different - does the output from Console.WriteLine go anywhere when debugging? I know that for it to go to the output window I should should Debug.WriteLine() or other methods, but where does the standard Console.WriteLine() go?</p>
<p><strong>Edit</strong>
When debugging, you don't see the black console window / test log - so the <strong>real question is</strong> how can I access/view this output during debugging?</p>
http://stackoverflow.com/questions/250404/where-does-console-writeline-go-in-debug/250411#2504111Answer by chills42 for Where does Console.WriteLine go in Debug?chills422008-10-30T14:44:33Z2008-10-30T14:44:33Z<p>It goes to the console (standard output) or to the stream that the console is set to.</p>
http://stackoverflow.com/questions/250404/where-does-console-writeline-go-in-debug/250412#2504120Answer by Joel Coehoorn for Where does Console.WriteLine go in Debug?Joel Coehoorn2008-10-30T14:44:59Z2008-10-30T14:44:59Z<p>Console.writeline() goes to a console window: the black command / dos prompt.</p>
http://stackoverflow.com/questions/250404/where-does-console-writeline-go-in-debug/250507#2505070Answer by James Curran for Where does Console.WriteLine go in Debug?James Curran2008-10-30T15:08:39Z2008-10-30T15:08:39Z<p>Even in a WinForms app, you can create a console window, but you'll have to go through P/Invoke to call a Win32 method directly. See <a href="http://pinvoke.net/default.aspx/kernel32/AllocConsole.html" rel="nofollow">http://pinvoke.net/default.aspx/kernel32/AllocConsole.html</a></p>
http://stackoverflow.com/questions/250404/where-does-console-writeline-go-in-debug/250552#2505520Answer by Samuel for Where does Console.WriteLine go in Debug?Samuel2008-10-30T15:15:55Z2008-10-30T15:15:55Z<p>Debug and Release do not control whether or not you get a console window. That is controlled by the project's output type. (Properties -> Application -> Output Type).
Console Application will get you a console window which will visualize and receive input from the window into the Error, In, and Out streams in System.Console.</p>
<p>The System.Console class exposes several properties and methods for interacting with its streams even if you cannot see it. Most notably: Error, In, Out, SetError(), SetIn(), SetOut(), and the Read and Write methods.</p>