ApiExamples.ExMailMergeCustom.CustomerMailMergeDataSource.MoveNext C# (CSharp) Метод

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

A standard implementation for moving to a next record in a collection.
public MoveNext ( ) : bool
Результат bool
            public bool MoveNext()
            {
                if (!this.IsEof)
                    this.mRecordIndex++;

                return (!this.IsEof);
            }