标签: c# .net generics reflection
我有一个T的Generic类,其中T是一个类 我想从这个通用类创建一个对象,但我有字符串中的类名 这是我的代码
public class GenericClass<T>:IGeneric<T> where T : class { public IEnumerable<T> Get { //Whatever The Logic Is } }