コード例 #1
0
 private static bool TryLoadType(string typeName, string modernAssembly, string classicAssembly, out Type type)
 {
     type = LightUpHelper.GetType(typeName, modernAssembly, classicAssembly);
     return(type != null);
 }