コード例 #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));
 }