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
What MSDN states is that static methods of Queue are thread-safe, not that instance methods of a static instance are thread-safe.