使用类名C#从通用类创建对象

时间:2017-11-14 10:42:49

标签: c# .net generics reflection

我有一个T的Generic类,其中T是一个类 我想从这个通用类创建一个对象,但我有字符串中的类名 这是我的代码

public class GenericClass<T>:IGeneric<T> where T : class
{
    public IEnumerable<T> Get
    {
        //Whatever The Logic Is
    }
}

0 个答案:

没有答案