AsyncDolls.AsyncCountdownEvent.TryAddCount C# (CSharp) Method

TryAddCount() public method

Attempts to add one to the current count. This method returns false if the count is already at zero or if the new count would be greater than Int32.MaxValue.
public TryAddCount ( ) : bool
return bool
        public bool TryAddCount()
        {
            return TryAddCount(1);
        }

Same methods

AsyncCountdownEvent::TryAddCount ( int signalCount ) : bool