Is there a way to create a second console to output to in .NET when writing a console application?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Well, you could start a new cmd.exe process and use stdio and stdout to send and recieve data.
More info on MSDN. |
|||||
|
|
Following fires of an application dependent number of console windows and stores the amount and parameters for the console inside a String Dictionary that is then loped to generate the required amount of spawned console apps. You would only need the process stuff if only spawning one of course.
Note this is intended either to run hidden(CreateNoWindow) or visible. |
||||
|
|
|
A single console is attached to any given process. So in short you can not. But there are ways to "fake it" |
|||
|
|