我有一个班级:
Class MyClass
{
...
}
我需要获取类的类型才能在反射中使用它:
string className="MyClass";
var type1=Type.GetType(className, true); //I have a problem loading the class here.
答案 0 :(得分:5)
答案 1 :(得分:2)
您不一定需要该名称,您可以直接执行:
var type1 = typeof(MyClass);