AcTools.LapTimes.LevelDbUtils.LevelDbInterop.leveldb_iter_seek_to_first C# (CSharp) Méthode

leveldb_iter_seek_to_first() private méthode

private leveldb_iter_seek_to_first ( IntPtr iterator ) : void
iterator System.IntPtr
Résultat void
        public static extern void leveldb_iter_seek_to_first(IntPtr /*Iterator*/ iterator);

Usage Example

Exemple #1
0
 /// <summary>
 /// Position at the first key in the source.
 /// The iterator is Valid() after this call iff the source is not empty.
 /// </summary>
 public void SeekToFirst()
 {
     LevelDbInterop.leveldb_iter_seek_to_first(Handle);
     Throw();
 }