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; } }