Possible Duplicate:
Calling Console.WriteLine from multiple threads
I am have test of CONSOLE APPLICATION for the c#
Question:
Has Console.WriteLine for THREAD SAFETY ?
In effect ,
is possible for no exceptions with :
Parallel.For(0, 1000000, p => Console.WriteLine("Hello Dears !"));
Thank for quick reponse !
Yes, using console I/O is thread safe:
http://msdn.microsoft.com/en-us/library/system.console.aspx
Related: Calling Console.WriteLine from multiple threads