0

我有以下代码,我通过函数调用它,购买我需要在运行时从 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() 中的方法;不使用泛型类型全部使用对象,现在类型被作为参数传递

4

1 回答 1

1

尝试Activator.CreateInstance

  ParentClass newObj = (ParentClass)Activator.CreateInstance(type)

来自MSDN

Activator.CreateInstance-> 使用该类型的默认构造函数创建指定类型的实例。

于 2013-01-10T17:26:07.393 回答