Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

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

Regards!

like image 563
Arya Avatar asked Nov 05 '11 22:11

Arya


1 Answers

A process can be associated with only one console

http://msdn.microsoft.com/en-us/library/windows/desktop/ms681944(v=vs.85).aspx

like image 119
L.B Avatar answered Oct 16 '22 23:10

L.B