Lucene.Net.Support.AtomicLong.DecrementAndGet C# (CSharp) Method

DecrementAndGet() public method

public DecrementAndGet ( ) : long
return long
        public long DecrementAndGet()
        {
            return Interlocked.Decrement(ref value);
        }