首页 > 后端开发 > C++ > C# 可以使用反射从字符串调用函数吗?

C# 可以使用反射从字符串调用函数吗?

Patricia Arquette
发布: 2025-01-26 02:26:09
原创
826 人浏览过

Can C# Call a Function from a String Using Reflection?

C# 中通过字符串调用函数

PHP 可以通过字符串调用函数,如下所示:

<code class="language-php">$function_name = 'hello';
$function_name();

function hello() { echo 'hello'; }</code>
登录后复制

.Net 是否可以实现类似的功能?

答案:

是的,.Net 可以使用反射通过字符串调用函数。以下是实现方法:

<code class="language-csharp">Type thisType = this.GetType();
MethodInfo theMethod = thisType.GetMethod(TheCommandString);
theMethod.Invoke(this, userParameters);</code>
登录后复制

上述代码中,调用的方法必须具有公共访问修饰符。如果需要调用非公共方法,可以使用 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中文网其他相关文章!

来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
作者最新文章
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板