在 C # 中从字符串调用函数

我知道在 php 你可以打这样的电话:

$function_name = 'hello';
$function_name();


function hello() { echo 'hello'; }

这可能吗?

236952 次浏览

是的,你可以用倒影,像这样:

Type thisType = this.GetType();
MethodInfo theMethod = thisType.GetMethod(TheCommandString);
theMethod.Invoke(this, userParameters);

对于上面的代码,被调用的方法必须具有访问修饰符 public。如果调用非公共方法,则需要使用 BindingFlags参数,例如 BindingFlags.NonPublic | BindingFlags.Instance:

Type thisType = this.GetType();
MethodInfo theMethod = thisType
.GetMethod(TheCommandString, BindingFlags.NonPublic | BindingFlags.Instance);
theMethod.Invoke(this, userParameters);
class Program
{
static void Main(string[] args)
{
Type type = typeof(MyReflectionClass);
MethodInfo method = type.GetMethod("MyMethod");
MyReflectionClass c = new MyReflectionClass();
string result = (string)method.Invoke(c, null);
Console.WriteLine(result);


}
}


public class MyReflectionClass
{
public string MyMethod()
{
return DateTime.Now.ToString();
}
}

您可以使用反射调用类实例的方法,执行动态方法调用:

假设在实际实例(this)中有一个名为 hello 的方法:

string methodName = "hello";


//Get the method information using the method info class
MethodInfo mi = this.GetType().GetMethod(methodName);


//Invoke the method
// (null- no parameter for the method call
// or you can pass the array of parameters...)
mi.Invoke(this, null);

稍微有点偏离——如果您想解析和计算包含(嵌套!)的整个表达式字符串函数,考虑 NCalc (http://ncalc.codeplex.com/和 nuget)

例如,对项目文件略作修改:

// the expression to evaluate, e.g. from user input (like a calculator program, hint hint college students)
var exprStr = "10 + MyFunction(3, 6)";
Expression e = new Expression(exprString);


// tell it how to handle your custom function
e.EvaluateFunction += delegate(string name, FunctionArgs args) {
if (name == "MyFunction")
args.Result = (int)args.Parameters[0].Evaluate() + (int)args.Parameters[1].Evaluate();
};


// confirm it worked
Debug.Assert(19 == e.Evaluate());

EvaluateFunction委托中,您将调用现有的函数。

这段代码可以在我的控制台.Net 应用程序中使用
class Program
{
static void Main(string[] args)
{
string method = args[0]; // get name method
CallMethod(method);
}
    

public static void CallMethod(string method)
{
try
{
Type type = typeof(Program);
MethodInfo methodInfo = type.GetMethod(method);
methodInfo.Invoke(method, null);
}
catch(Exception ex)
{
Console.WriteLine("Error: " + ex.Message);
Console.ReadKey();
}
}
    

public static void Hello()
{
string a = "hello world!";
Console.WriteLine(a);
Console.ReadKey();
}
}