Is there a C# equivalent to Java's CountDownLatch?
相关问题
- Sorting 3 numbers without branching [closed]
- Graphics.DrawImage() - Throws out of memory except
- Why am I getting UnauthorizedAccessException on th
- 求获取指定qq 资料的方法
- How to know full paths to DLL's from .csproj f
Here is a simple implementation (from 9 Reusable Parallel Data Structures and Algorithms):
The .NET Framework version 4 includes the new System.Threading.CountdownEvent class.