System.Threading.ClientInterlocked.Decrement C# (CSharp) Method

Decrement() public static method

public static Decrement ( long &location ) : long
location long
return long
        public static long Decrement(ref long location)
        {
            return Interlocked.Decrement(ref location);
        }

Same methods

ClientInterlocked::Decrement ( int &location ) : int