Where does Console.WriteLine go in Debug? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T16:14:15Z http://stackoverflow.com/feeds/question/250404 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/250404/where-does-console-writeline-go-in-debug 0 Where does Console.WriteLine go in Debug? ripper234 2008-10-30T14:42:59Z 2008-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#250411 1 Answer by chills42 for Where does Console.WriteLine go in Debug? chills42 2008-10-30T14:44:33Z 2008-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#250412 0 Answer by Joel Coehoorn for Where does Console.WriteLine go in Debug? Joel Coehoorn 2008-10-30T14:44:59Z 2008-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#250507 0 Answer by James Curran for Where does Console.WriteLine go in Debug? James Curran 2008-10-30T15:08:39Z 2008-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#250552 0 Answer by Samuel for Where does Console.WriteLine go in Debug? Samuel 2008-10-30T15:15:55Z 2008-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>