Ariadne.SharedInt32.Decrement C# (CSharp) 메소드

Decrement() 공개 메소드

Atomically decrement the value of the Ariadne.SharedInt32 by one.
public Decrement ( ) : int
리턴 int
        public int Decrement()
        {
            return Interlocked.Decrement(ref _value);
        }