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) whic
No. The Console class is just a very thin wrapper around the Win32 idea of a console. Essentially everything you see when you use
cmd.exe. There is no way to create 2 of these in a single process.
Yes. It would be possible to essentially build a very console like class in WPF or WinForms. Use that to spit out text to a command line like application.