带参数的Invoke方法会产生错误

时间:2013-10-18 17:59:20

标签: c# reflection

尝试在行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;
        }
}

2 个答案:

答案 0 :(得分:4)

Invoke采用对象数组来支持可变数量的参数。在您的情况下,您只有一个参数,该参数本身位于对象数组中。因此,您需要创建一个新的对象数组,其唯一的成员是原始对象数组:

       val = (bool)method.Invoke(instance, new object[] {args});

答案 1 :(得分:2)

试试这个

val = (bool)method.Invoke(instance, new object[] { args });

Invoke方法的第二个参数需要object[],它用于传递参数个数ex:args [0]作为第一个参数,args [1]作为第二个参数,依此类推。

所以当你传递object []运行时假设你正在传递多个参数,为了使它清楚地运行,你需要包含在另一个只有一个元素的对象[]中,所以它作为第一个参数传递