web-dev-qa-db-ja.com

C#の文字列から関数を呼び出す

私はPHPで次のような呼び出しを行うことができることを知っています:

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

function hello() { echo 'hello'; }

これは.Netで可能ですか?

136
Jeremy Boyd

はい。リフレクションを使用できます。このようなもの:

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

リフレクションを使用してクラスインスタンスのメソッドを呼び出し、動的なメソッド呼び出しを行うことができます。

実際のインスタンス(これ)に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);
70
CMS
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();
        }
    }
37
BFree

わずかな接線 ネストされた!)関数を含む式文字列全体を解析および評価する場合は、NCalc(---(http://ncalc.codeplex.com/ and 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デリゲート内で、既存の関数を呼び出します。

0
drzaus

事実、私はWindows Workflow 4.5に取り組んでおり、ステートマシンからメソッドにデリゲートを渡す方法を見つけることができましたが、成功しませんでした。私が見つけた唯一の方法は、デリゲートとして渡したいメソッドの名前の文字列を渡し、そのメソッド内で文字列をデリゲートに変換することでした。とてもいい答えです。ありがとう。このリンクを確認してください https://msdn.Microsoft.com/en-us/library/53cz7sc6(v = vs.110).aspx

0
Antonio Leite