Parameter count mismatch.
尝试调用该行的另一个类中的方法时出现错误val = (bool)method.Invoke(instance, args);
该方法只有一个参数,并且(我认为)我将一个参数作为对象传递,所以不确定为什么会出现错误。
请有人能告诉我我的代码有什么问题吗?
class firstClass
{
public bool MethodXYZ(System.Windows.Forms.WebBrowser Wb,
string debug_selectedOption)
{
object[] args = new object[] { Wb, debug_selectedOption };
string methodToInvoke = System.Reflection.MethodBase.GetCurrentMethod().Name;
return runGenericMethod(methodToInvoke, args);
}
private bool runGenericMethod(string methodToInvoke, object[] args)
{
bool val = false;
string anotherClass = args[1].ToString();
Type t = Type.GetType("ProjectXYZ." + anotherClass);
MethodInfo method = t.GetMethod(methodToInvoke);
var constructorInfo = t.GetConstructor(new Type[0]);
if (constructorInfo != null)
{
object instance = Activator.CreateInstance(t);
val = (bool)method.Invoke(instance, args);
}
//........
return val;
}
}
class anotherClass
{
public bool MethodXYZ(object[] args)
{
return true;
}
}