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

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

DDD
发布: 2025-01-26 02:21:08
原创
881 人浏览过

Can C# Invoke Functions Dynamically from Strings Using Reflection?

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

PHP可以很方便地通过字符串调用函数。那么,C#可以实现这个功能吗?

解答:反射

是的,反射允许您动态地通过字符串执行方法。方法如下:

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

这段代码之所以有效,是因为它使用方法名称的字符串表示形式检索方法的MethodInfo。

非公共方法

如果您需要调用非公共方法,请使用BindingFlags:

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

这指定了该方法是非公共的且特定于实例的。

以上是C# 可以使用反射从字符串动态调用函数吗?的详细内容。更多信息请关注PHP中文网其他相关文章!

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