Calling Console.WriteLine from multiple threads
Why does Console.WriteLine work from multiple threads?
Solution 1:
The console class handles the thread synchronization for you.
From the documentation of Console:
I/O operations using these streams are synchronized, which means multiple threads can read from, or write to, the streams.
Solution 2:
There is a bug in .NET 4.5 CLR which makes Console.WriteLine not work from multiple threads if you use Console.ReadKey. It is fixed in some Windows versions, but in 8.1 Windows Update does not find it yet.
Infrequent hangs in a multi-threaded C# console application when using Console.Writeline() or Console.Write()
Using Console.WriteLine in a Timer why it would appear to exit?
Solution 3:
Multiple threads write to the same output when using Console.WriteLine
, generally your screen by default.