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

时间:2009-02-12 04:49:30

标签: c# .net php string function-calls

我知道在php中你可以拨打电话:

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

function hello() { echo 'hello'; }

这可能在.Net吗?

8 个答案:

答案 0 :(得分:242)

是。你可以使用反射。像这样:

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

答案 1 :(得分:70)

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

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

答案 2 :(得分:36)

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 :(得分:1)

此代码在我的控制台.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();
    }
}

答案 4 :(得分:0)

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

答案 5 :(得分:0)

事实上,我正在开发Windows Workflow 4.5,我找到了一种方法,将一个委托从一个状态机传递给一个没有成功的方法。我找到的唯一方法是传递一个字符串,其中包含我想要作为委托传递的方法的名称,并将字符串转换为方法内的委托。非常好的答案。谢谢。请检查此链接https://msdn.microsoft.com/en-us/library/53cz7sc6(v=vs.110).aspx

答案 6 :(得分:-1)

使用动态类型,动态是在 C# 4.0 中引入的。

    dynamic someClass = new YourClass();
    someClass.SomeMethod();

    public class YourClass
    {
        public void SomeMethod()
        {
            Console.WriteLine("SomeMethod called using dynamic type");
        }        
    }

答案 7 :(得分:-7)

在C#中,您可以将委托创建为函数指针。有关使用情况的信息,请查看以下MSDN文章: http://msdn.microsoft.com/en-us/library/ms173171(VS.80).aspx

    public static void hello()
    {
        Console.Write("hello world");
    }

   /* code snipped */

    public delegate void functionPointer();

    functionPointer foo = hello;
    foo();  // Writes hello world to the console.