如何在调用方法时传递参数(反射)?

时间:2014-06-27 13:07:39

标签: c# reflection

我需要调用一个方法,传递一个int。使用以下代码我可以获取方法但不传递参数。如何解决?

dynamic obj;
obj = Activator.CreateInstance(Type.GetType(String.Format("{0}.{1}", namespaceName, className)));

var method = this.obj.GetType().GetMethod(this.methodName, new Type[] { typeof(int) });
bool isValidated = method.Invoke(this.obj, new object[1]);

public void myMethod(int id)
{
}

2 个答案:

答案 0 :(得分:4)

new object[1]部分是您指定参数的方式 - 但您只是传入一个带有null引用的数组。你想要:

int id = ...; // Whatever you want the value to be
object[] args = new object[] { id };
method.Invoke(obj, args);

(有关详细信息,请参阅MethodBase.Invoke文档。)

请注意,method.Invoke会返回object,而不是bool,因此您当前的代码甚至无法编译。您可以将返回值转换为bool,但在您的示例中,在myMethod返回void时,在执行时不会有帮助。

答案 1 :(得分:0)

使用调用方法

传递一个对象
namespace test
{
   public class A
   {
       public int n { get; set; }
       public void NumbMethod(int Number)
       {
            int n = Number;
            console.writeline(n);
       }
    }
}
class MyClass
{
    public static int Main()
    {
        test mytest = new test();   
        Type myTypeObj = mytest.GetType();    
        MethodInfo myMethodInfo = myTypeObj.GetMethod("NumbMethod");
        object[] parmint = new object[] {5};
        myMethodInfo.Invoke(myClassObj, parmint);
    }
 }