我有以下代码,我通过函数调用它,购买我需要在运行时从 Type otherType dynamic 调用它。
// this in code this works fine
DooClass newOne = GetInstance<DooClass>();
// The function
private T GetInstance<T>() where T : new()
{
T item = SomeClass.Instance.GetItem<T>();
if (item == null)
{
item = new T();
}
return item;
}
所有对象都具有相同的 Parent ParentClass
//This is what i want to do or something like this
public void SomeFunction(Type someType)
{
ParentClass newObj = GetInstance<someType>();
}
/////通过下面的评论解决
private ParentClass GetElement(Type theType)
{
ParentClass item = (ParentClass)SomeClass.Instance.GetItem(theType);
if (item == null)
{
item = (ParentClass)Activator.CreateInstance(theType);
}
return item;
}
和类SomeClass.Instance.GetItem() 中的方法;不使用泛型类型全部使用对象,现在类型被作为参数传递