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

Seek() 공개 메소드

Position at the first key in the source that at or past target The iterator is Valid() after this call iff the source contains an entry that comes at or past target.
public Seek ( byte key ) : void
key byte
리턴 void
        public void Seek(byte[] key) {
            LevelDbInterop.leveldb_iter_seek(Handle, key, key.Length);
            Throw();
        }

Same methods

Iterator::Seek ( int key ) : void
Iterator::Seek ( string key ) : void