Example #1
0
 public AbcInstance ImportType(string fullname, bool safe)
 {
     try
     {
         return(Abc.ImportType(AppAssembly, fullname));
     }
     catch (Exception)
     {
         if (safe)
         {
             CompilerReport.Add(Warnings.UnableImportType, fullname);
             return(null);
         }
         throw;
     }
 }