c#中反射的动态类名

时间:2015-10-06 06:53:37

标签: c# class reflection

我有一个班级:

Class MyClass
{
...
}

我需要获取类的类型才能在反射中使用它:

string className="MyClass";
var type1=Type.GetType(className, true); //I have a problem loading the class here.

2 个答案:

答案 0 :(得分:5)

您可以尝试使用Type Properties

typeof(T).Name

如果您正在处理实例,那么

this.GetType().Name

答案 1 :(得分:2)

您不一定需要该名称,您可以直接执行:

var type1 = typeof(MyClass);