コード例 #1
0
ファイル: PrimConnection.cs プロジェクト: rajit1997/BangDB
 public long Del(byte[] key)
 {
     if (key == null)
     {
         throw new Exception("key can't be null");
     }
     return(BangDBNative.DelPrim_Byte(_connection, key, key.Length));
 }