AcTools.LapTimes.LevelDbUtils.Iterator.Prev C# (CSharp) 메소드

Prev() 공개 메소드

Moves to the previous entry in the source. After this call, Valid() is true iff the iterator was not positioned at the first entry in source. REQUIRES: Valid()
public Prev ( ) : void
리턴 void
        public void Prev() {
            LevelDbInterop.leveldb_iter_prev(Handle);
            Throw();
        }