Are there any concurrent queue types in a .NET 3rd party library?
If I can't use .N开发者_StackOverflow社区ET 4, are there any alternatives?
You could just use the standard Queue<T>
and use a Monitor (lock) to synchronize access to the queue.
Mono. (source code link is from 2009, you might want to look it up on github)
精彩评论