通过反射调用静态方法
问题:
您在命名空间 mySolution.Macros,每个包含静态方法例如:
public static class Indent { public static void Run() { // implementation } }
您的目标是使用反射调用这些方法,即使它们是静态的。
解决方案:
调用静态具有反射的方法,同时保留其静态性质,请采用以下方法:
foreach (var tempClass in macroClasses) { // Note that the first argument is ignored for static methods tempClass.GetMethod("Run").Invoke(null, null); }
如文档中所述MethodInfo.Invoke,第一个参数对于静态方法来说是多余的,因此您可以安全地传递 null。
绑定标志:
需要注意的是,您可能需要在调用方法时指定绑定标志,如评论中所建议:
tempClass.GetMethod("Run", BindingFlags.Public | BindingFlags.Static).Invoke(null, null);
这确保该方法是公共的并且static,这是正确调用所必需的。
以上是如何在 C# 中使用反射调用静态方法?的详细内容。更多信息请关注PHP中文网其他相关文章!