Is console.writeline thread safe?

user496949 picture user496949 · Jan 27, 2011 · Viewed 15k times · Source

Possible Duplicate:
Calling Console.WriteLine from multiple threads

Just want to know if multiple threads call Console.WriteLine, will it cause a deadlock?

Answer

ClosureCowboy picture ClosureCowboy · Jan 27, 2011

It's safe! From the .NET API browser:

Console I/O Streams

[...]

I/O operations using these streams are synchronized, which means multiple threads can read from, or write to, the streams.