object obj=Activator.CreateInstance(ty);
System.Reflection.MethodInfo srmi=ty.GetMethod(methodname);
srmi.Invoke(obj,args);
该args为string[]
运行后,报出“不能从目标类型扩展为基元类型”,这是什么原因?问题到底出在什么地方?
请赐教!急!
System.Reflection.MethodInfo srmi=ty.GetMethod(methodname);
srmi.Invoke(obj,args);
该args为string[]
运行后,报出“不能从目标类型扩展为基元类型”,这是什么原因?问题到底出在什么地方?
请赐教!急!