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

IncrementAndGet() public method

public IncrementAndGet ( ) : long
return long
        public long IncrementAndGet()
        {
            return Interlocked.Increment(ref value);
        }