在这里,您没有使用类作为Invoke
ie 中的第一个参数,您必须应用如下代码。
MyClass master= new MyClass();
master.GetType().GetMethod("HelloWorld").Invoke(objMyClass, null);
现在,如果您有另一种带有某些参数的方法(重载方法),则可能会出现另一种引发错误的可能性。在这种情况下,您必须编写代码来指定您需要调用没有参数的方法。
MyClass master= new MyClass();
MethodInfo mInfo = master.GetType().GetMethods().FirstOrDefault
(method => method.Name == "HelloWorld"
&& method.GetParameters().Count() == 0);
mInfo.Invoke(objMyClass, null);
现在,如果您事先不知道您的类实例,您可以使用以下代码。在内部使用完全限定名称Type.GetType
Type type = Type.GetType("YourNamespace.MyClass");
object objMyClass = Activator.CreateInstance(type);
MethodInfo mInfo = objMyClass.GetType().GetMethods().FirstOrDefault
(method => method.Name == "HelloWorld"
&& method.GetParameters().Count() == 0);
mInfo.Invoke(objMyClass, null);
如果您的类实例事先未知,并且在另一个程序集中,Type.GetType
则可能返回 null。在这种情况下,对于上面的代码,而不是Type.GetType
调用下面的方法
public Type GetTheType(string strFullyQualifiedName)
{
Type type = Type.GetType(strFullyQualifiedName);
if (type != null)
return type;
foreach (var asm in AppDomain.CurrentDomain.GetAssemblies())
{
type = asm.GetType(strFullyQualifiedName);
if (type != null)
return type;
}
return null;
}
并打电话给
Type type = GetTheType("YourNamespace.MyClass");