我有一个程序集asdf.dll,它有一个类'Class1'。
如何获得Class1的类型?
string a = "Class1"; //Class1 is the name of class in asdf.dll
string typeString = typeof(Class1).FullName; // here I only have the string Class1 and not Class Class1
AssemblyName assemblyName = AssemblyName.GetAssemblyName("asdf.dll");
Type type = Type.GetType(typeString + ", " + assemblyName);
如何从包含类名的字符串中获取类的类型?
答案 0 :(得分:7)
Type t = Type.GetType("MyDll.MyClass,Mydll")
其中MyDll.MyClass是您的欲望类/表格的类位置。 Mydll是你的名字。你想打电话。
答案 1 :(得分:3)
typeof(Class1).FullName
已经是完全限定名称。
尝试传递它,或者改为使用Type.Name属性。