Вызов функции из строки в C # - PullRequest
132 голосов
/ 12 февраля 2009

Я знаю, что в php вы можете сделать звонок как:

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

function hello() { echo 'hello'; }

Возможно ли это в .Net?

Ответы [ 6 ]

244 голосов
/ 12 февраля 2009

Да. Вы можете использовать отражение. Примерно так:

Type thisType = this.GetType();
MethodInfo theMethod = thisType.GetMethod(TheCommandString);
theMethod.Invoke(this, userParameters);
70 голосов
/ 12 февраля 2009

Вы можете вызывать методы экземпляра класса, используя отражение, делая динамический вызов метода:

Предположим, что у вас есть метод hello в фактическом экземпляре (this):

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);
36 голосов
/ 12 февраля 2009
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();
        }
    }
0 голосов
/ 03 сентября 2017

На самом деле я работаю над Windows Workflow 4.5, и мне удалось найти способ передать делегат из машины состояний в метод безуспешно. Единственный способ найти меня - это передать строку с именем метода, который я хотел передать как делегат, и преобразовать строку в делегат внутри метода. Очень хороший ответ. Благодарю. Проверить эту ссылку https://msdn.microsoft.com/en-us/library/53cz7sc6(v=vs.110).aspx

0 голосов
/ 05 декабря 2014

Небольшая касательная - если вы хотите проанализировать и оценить всю строку выражения, которая содержит (вложенные!) Функции, рассмотрите NCalc (http://ncalc.codeplex.com/ и nuget)

Ex. немного изменен из проектной документации:

// 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 вы бы вызвали существующую функцию.

0 голосов
/ 12 февраля 2009

В 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.
...