1 回答
TA贡献1946条经验 获得超4个赞
是的,这可以通过反射来实现。您可以使用该Invoke方法。
它看起来像这样:
MethodInfo method = type.GetMethod(name);
object result = method.Invoke(objectToCallTheMethodOn);
话虽如此,在正常情况下,您不应该使用反射来调用 c# 中的方法。它仅适用于非常特殊的情况。
这是一个完整的例子:
class A
{
public int MyMethod(string name) {
Console.WriteLine( $"Hi {name}!" );
return 7;
}
}
public static void Main()
{
var a = new A();
var ret = CallByName(a, "MyMethod", new object[] { "Taekyung Lee" } );
Console.WriteLine(ret);
}
private static object CallByName(A a, string name, object[] paramsToPass )
{
//Search public methods
MethodInfo method = a.GetType().GetMethod(name);
if( method == null )
{
throw new Exception($"Method {name} not found on type {a.GetType()}, is the method public?");
}
object result = method.Invoke(a, paramsToPass);
return result;
}
这打印:
Hi Taekyung Lee!
7
- 1 回答
- 0 关注
- 272 浏览
添加回答
举报