Example #1
0
 public bool Check_If_Key_Is_In_This_Block(int hashnum, char[] Key)
 {
     try
     {
         return(CppToCsharpAdapter.Check_If_Key_Is_In_This_Block(my_hash_file_pointer, hashnum, Key));
     }
     catch (SEHException ex)
     {
         string message = CppToCsharpAdapter.GetLastErrorMessage(this.my_hash_file_pointer);
         throw new Exception(message);
     }
     catch
     {
         throw;
     }
 }