Corlib.Threading.AtomicUInt64.DecrementAndReturn C# (CSharp) Method

DecrementAndReturn() public method

Decrements the value
public DecrementAndReturn ( ) : ulong
return ulong
        public ulong DecrementAndReturn()
        {
            return Calculate (Interlocked.Decrement (ref _value));
        }