AsyncDolls.AsyncCountdownEvent.TryAddCount C# (CSharp) Méthode

TryAddCount() public méthode

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
Résultat bool
        public bool TryAddCount()
        {
            return TryAddCount(1);
        }

Same methods

AsyncCountdownEvent::TryAddCount ( int signalCount ) : bool