Open a new console with every new thread in C #?

I want the new console to open whenever I create a new thread so that the output is organized. My application is fully console. Would it be possible if so?

Hello!

+7
source share
2 answers
+16
source

It is easy to get around this limitation.

The code that you want to run as a separate stream with its own console window simply encodes it as a separate console application, passing parameters as necessary on the command line.

Then run individual instances of this code using Start () inside the main application.

0
source

All Articles