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

问题描述 投票:0回答:5

我知道在 PHP 中你可以进行如下调用:

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

function hello() { echo 'hello'; }

这在.Net中可能吗?

c# .net string function-call
5个回答
305
投票

是的。您可以使用反射。像这样的东西:

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);

84
投票

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

假设您在实际实例(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);

43
投票
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();
        }
    }

3
投票
此代码适用于我的控制台 .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();
    }
}

2
投票

稍微切题——如果您想解析和计算包含(嵌套!)函数的整个表达式字符串,请考虑 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
委托中,您可以调用现有函数。

© www.soinside.com 2019 - 2024. All rights reserved.