コード例 #1
0
ファイル: Iterator.cs プロジェクト: DaanV2/leveldb-mcpe.Net
 /// <summary>
 /// Position at the last key in the source.
 /// The iterator is IsValid() after this call iff the source is not empty.
 /// </summary>
 public void SeekToLast()
 {
     LevelDBInterop.leveldb_iter_seek_to_last(this.Handle);
     this.Throw();
 }