It would be handy during debugging to have multiple consoles (not multiple monitors, which I already have). I am imagining something like Console.WriteLine(1, String1) which would send String1 to one console window 1 and Console.WriteLine(2, String2) which would send String2 to console window 2.
It would be handy during debugging to have multiple consoles (not multiple monitors, which
Share
Nope
[http://msdn.microsoft.com/en-us/library/ms681944(VS.85).aspx](http://msdn.microsoft.com/en-us/library/ms681944(VS.85).aspx)
Instead you can use WinForms or WPF to create multiple ‘console’ windows and write a simple
WriteLinemethod to append text to a text box or similar.Another option is to open a log file, and use that as your second ‘console’.