The msdn documentation states that a static generic Queue is thread-safe. Does this mean that the following code is thread-safe? In other words, is there a problem when a th
Yes, you have to lock just as MSDN says
To allow the collection to be accessed by multiple threads for reading and writing, you must implement your own synchronization.