예제 #1
0
파일: HashFile.cs 프로젝트: MosheFogel/FMS
 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;
     }
 }