Open a new console with every new Thread in C#? Open a new console with every new Thread in C#? multithreading multithreading

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


It's not difficult to work around this limitation.

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

Then run separate instances of this code using Start() inside your main application.