例如把 string str="xxxClassName ";转为 xxxClassName类并调用它的构造函数
Type t=str.GetType(" 它的命名空间. "+str);
ConstructorInfo cti= t.GetConstructor(System.Type.EmptyTypes); //可以获得它的构造函数
xxxClassName x= (xxxClassName)cit.invoke(null) //执行它的构造函数
2021-11-13 01:23:51
例如把 string str="xxxClassName ";转为 xxxClassName类并调用它的构造函数
Type t=str.GetType(" 它的命名空间. "+str);
ConstructorInfo cti= t.GetConstructor(System.Type.EmptyTypes); //可以获得它的构造函数
xxxClassName x= (xxxClassName)cit.invoke(null) //执行它的构造函数