C# の文字列を介して関数を呼び出す
PHP は、文字列に格納された関数名によって関数を呼び出すことができます。例:
<code class="language-php">$function_name = 'hello'; $function_name(); function hello() { echo 'hello'; }</code>
この機能は .NET で可能ですか?
はい。 リフレクションを使用してこの機能を実現できます。その方法は次のとおりです:
<code class="language-csharp">Type thisType = this.GetType(); MethodInfo theMethod = thisType.GetMethod(TheCommandString); theMethod.Invoke(this, userParameters);</code>
呼び出されるメソッドには public アクセス修飾子が必要であることに注意してください。非パブリックメソッドの場合は、BindingFlags パラメータを使用します:
<code class="language-csharp">Type thisType = this.GetType(); MethodInfo theMethod = thisType .GetMethod(TheCommandString, BindingFlags.NonPublic | BindingFlags.Instance); theMethod.Invoke(this, userParameters);</code>
以上がC#は文字列から関数を呼び出すことができますか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。