AcTools.LapTimes.LevelDbUtils.Iterator.Seek C# (CSharp) Méthode

Seek() public méthode

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
Résultat 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