Exemple #1
0
 /// <summary>
 /// Store the mapping "key->value" in the database.
 /// </summary>
 public WriteBatch Put(byte[] key, byte[] value)
 {
     LevelDBInterop.leveldb_writebatch_put(this.Handle, key, key.Length, value, value.Length);
     return(this);
 }