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