Beispiel #1
0
 /// <summary>
 /// Moves to the next entry in the source.
 /// After this call, IsValid() is true iff the iterator was not positioned at the last entry in the source.
 /// REQUIRES: IsValid()
 /// </summary>
 public void Next()
 {
     LevelDBInterop.leveldb_iter_next(this.Handle);
     this.Throw();
 }
Beispiel #2
0
 /// <summary>
 /// Moves to the next entry in the source.
 /// After this call, IsValid() is true iff the iterator was not positioned at the last entry in the source.
 /// REQUIRES: IsValid()
 /// </summary>
 public void Next()
 {
     LevelDBInterop.leveldb_iter_next(Handle);
     Throw();
 }