为了解决我在使用反射的解决方案中遇到的问题,我需要指定以下代码来向用户显示一个CheckedListBox,它暴露了他们必须选择的条件列表,并根据他们的选择修改应用程序中的某种行为。 在这个时候,由于this帖子,我没有问题来获取继承类的字符串名称,但我无法弄清楚如何获取每个类的实例。
DataTable table = new DataTable();
table.Columns.Add("Intance", typeof(IConditions)); //INSTANCE of the inherited class
table.Columns.Add("Description", typeof(string)); //name of the inherited class
//list of all types that implement IConditions interface
var interfaceName = typeof(IConditions);
List<Type> inheritedTypes = (AppDomain.CurrentDomain.GetAssemblies()
.SelectMany(s => s.GetTypes())
.Where(p => interfaceName.IsAssignableFrom(p) && p != interfaceName)).ToList();
foreach (Type type in inheritedTypes)
{
IConditions i; //here is where I don't know how to get the instance of the Type indicated by 'type' variable
//I.E: IConditions I = new ConditionOlderThan20(); where 'ConditionOlderThan20' is a class which implements IConditions interface
table.Rows.Add(i, type.Name);
}
有可能获得一个物体吗?处理这类问题的更好方法是什么?
答案 0 :(得分:1)
只需使用Activator.CreateInstance
方法:
IConditions i = Activator.CreateInstance(type) as IConditions;
注意:如果type
没有无参数构造函数,则会失败。您可以使用带参数的版本:
public static Object CreateInstance(Type type, params Object[] args)