开发者

Are there any concurrent queue types in a .NET 3rd party library?

开发者 https://www.devze.com 2023-02-23 03:25 出处:网络
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 cod

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)

0

精彩评论

暂无评论...
验证码 换一张
取 消