Fu.Util.Counter.Counter C# (CSharp) Method

Counter() public method

public Counter ( int count ) : System.Threading
count int
return System.Threading
        public Counter(int count)
        {
            _remain = count;
              _mutex = new Mutex();
              _event = new ManualResetEvent(count == 0);
        }