Lucene.Net.Support.AtomicLong.IncrementAndGet C# (CSharp) Метод

IncrementAndGet() публичный Метод

public IncrementAndGet ( ) : long
Результат long
        public long IncrementAndGet()
        {
            return Interlocked.Increment(ref value);
        }