反射未找到嵌套类型的受保护字段
我有一个类,它有一个受保护的嵌套类,以及一个嵌套类类型的受保护的只读字段。 我的框架调用
o.GetType().GetFields(BindingFlags.Public | BindingFlags.NonPublic);
该类型的实例,我可以从调试器中看到该字段,但调用不会返回它。为什么?
I have a class, which has a protected nested class, and a protected readonly field of the nested class' type.
My framework calls
o.GetType().GetFields(BindingFlags.Public | BindingFlags.NonPublic);
on an instance of the type, I can see the field from debugger, but the call doesn't return it. Why?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您还需要包含
BindingFlags.Instance
来自
BindingFlags 枚举 (System.Reflection)
You also need to include
BindingFlags.Instance
from
BindingFlags Enumeration (System.Reflection)
如果它是非静态字段,您还应该指定
BindingFlags.Instance
。如果是静态字段,请添加
BindingFlags.Static
和BindingFlags.FlattenHierarchy
。You should also specify
BindingFlags.Instance
if it's a non-static field.If it's a static field, add
BindingFlags.Static
andBindingFlags.FlattenHierarchy
.