gpt4 book ai didi

c# - 如何获取基类的公共(public)静态方法?

转载 作者:可可西里 更新时间:2023-11-01 03:14:13 24 4
gpt4 key购买 nike

我的基类有一个公共(public)静态方法,但是当我调用 typeof(TDerived).GetMethods(BindingFlags.Public |BindingFlags.Static) 时,我的方法没有返回。 (TDerived 当然以某种方式继承 self 的基类)。我在此查询的位置没有对我的基类的引用。
我做错了什么?

最佳答案

使用 BindingFlags.FlattenHierarchy 标志:

typeof(TDerived).GetMethods(BindingFlags.Public | BindingFlags.Static | BindingFlags.FlattenHierarchy)

这是一个documented behavior in the Remarks section对于 Type.GetMethods(BindingFlags) 方法。

关于c# - 如何获取基类的公共(public)静态方法?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5675006/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com