示例#1
0
文件: DB.cs 项目: nGenieDeveloper/BD2
 public byte[] GetRaw(ReadOptions options, string key)
 {
     CheckDisposed();
     if (options == null)
     {
         options = new ReadOptions();
     }
     return(Native.leveldb_get_raw(Handle, options.Handle, key, encoding));
 }