예제 #1
0
파일: HashFile.cs 프로젝트: MosheFogel/FMS
 public string IntToString(int a)
 {
     try
     {
         return(CppToCsharpAdapter.int_to_string(my_hash_file_pointer, a));
     }
     catch (SEHException ex)
     {
         string message = CppToCsharpAdapter.GetLastErrorMessage(this.my_hash_file_pointer);
         throw new Exception(message + ex);
     }
     catch
     {
         throw;
     }
 }