Example #1
0
 public void Del_rec_Casing(string Key)
 {
     try
     {
         CppToCsharpAdapter.Del_rec_Casing(my_hash_file_pointer, Key);
     }
     catch (SEHException ex)
     {
         string message = CppToCsharpAdapter.GetLastErrorMessage(this.my_hash_file_pointer);
         throw new Exception(message);
     }
     catch
     {
         throw;
     }
 }