当我将其名称作为字符串时,如何执行方法

时间:2012-05-14 05:55:49

标签: c#

今天在采访中(初级网络开发者),面试官问我这个问题:

  

当你的名字作为一个字符串时,如何执行一个方法(in   javascript和C#)

我无法回答:(

现在,当我搜索时,我发现了这个问题How to execute a JavaScript function when I have its name as a string

但是在c#??

中如何做到这一点

3 个答案:

答案 0 :(得分:6)

如果您只是拥有该方法的名称,那么您只能使用.net Relfection来运行该方法。

检查:MethodBase.Invoke Method (Object, Object[])

示例:

class Class1
   {
    public int AddNumb(int numb1, int numb2)
    {
      int ans = numb1 + numb2;
      return ans;
    }

  [STAThread]
  static void Main(string[] args)
  {
     Type type1 = typeof(Class1); 
     //Create an instance of the type
     object obj = Activator.CreateInstance(type1);
     object[] mParam = new object[] {5, 10};
     //invoke AddMethod, passing in two parameters
     int res = (int)type1.InvokeMember("AddNumb", BindingFlags.InvokeMethod,
                                        null, obj, mParam);
     Console.Write("Result: {0} \n", res);
   }
  }

答案 1 :(得分:2)

假设您有类型,可以使用反射按名称调用方法。

class Program
{
    static void Main()
    {
        var car = new Car();
        typeof (Car).GetMethod("Drive").Invoke(car, null);
    }
}

public class Car
{
    public void Drive()
    {
        Console.WriteLine("Got here. Drive");
    }
}

如果您正在调用的方法包含参数,您可以按照与方法签名相同的顺序将参数作为对象数组传递给Invoke

var car = new Car();
typeof (Car).GetMethod("Drive").Invoke(car, new object[] { "hello", "world "});

答案 2 :(得分:2)

好文章。 完整阅读。您不仅可以从字符串调用方法,还可以从许多场景中调用方法。

http://www.codeproject.com/Articles/19911/Dynamically-Invoke-A-Method-Given-Strings-with-Met

How to call a shared function which its name came as a parameter