AsyncDolls.AsyncCountdownEvent.TryAddCount C# (CSharp) Метод

TryAddCount() публичный Метод

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
Результат bool
        public bool TryAddCount()
        {
            return TryAddCount(1);
        }

Same methods

AsyncCountdownEvent::TryAddCount ( int signalCount ) : bool