目前,当我有一个类类型并且需要知道是否可以创建该类时。我会打电话Activator.CreateInstance(type);
并扔掉结果。
这似乎非常低效且有问题。
是否有另一种方法来确认可以为当前应用程序实例化类类型?
作为应用程序启动的一部分,我需要执行此测试。确保及早发现任何错误配置。如果我将它留到需要该类的实例之前,那么当周围没有人来修复它时可能会发生错误。
这就是我现在要做的。
string className = string.Format("Package.{0}.{1}", pArg1, pArg2);
Type classType = Type.GetType(className);
if (classType == null)
{
throw new Exception(string.Format("Class not found: {0}", className));
}
try
{
// test creating an instance of the class.
Activator.CreateInstance(classType);
}
catch (Exception e)
{
logger.error("Could not create {0} class.", classType);
}