AcTools.LapTimes.LevelDbUtils.Iterator.Next C# (CSharp) Метод

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

Moves to the next entry in the source. After this call, Valid() is true iff the iterator was not positioned at the last entry in the source. REQUIRES: Valid()
public Next ( ) : void
Результат void
        public void Next() {
            LevelDbInterop.leveldb_iter_next(Handle);
            Throw();
        }