C#反思为什么GetFields列出我没有创建的字段?如何排除它们?

前端之家收集整理的这篇文章主要介绍了C#反思为什么GetFields列出我没有创建的字段?如何排除它们?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
代码返回我创建的字段,但也返回一些系统字段(我在 WPF应用程序中)我没有创建自己:
FieldInfo[] fieldInfos;
fieldInfos = this.GetType().GetFields(BindingFlags.NonPublic | BindingFlags.Instance);

如何排除系统字段并只保留自己的字段?

更新:这些字段不是我从我自己的类继承的字段.

解决方法

我假设你从对象以外的东西继承 – 在这种情况下将 DeclaredOnly添加到你的GetFields调用

DeclaredOnly

Specifies that only members declared at the level of the supplied type’s
hierarchy should be considered. Inherited members are not considered.

所以你会:

FieldInfo[] fieldInfos = this.GetType().GetFields(
     BindingFlags.NonPublic | BindingFlags.Instance | BindingFlags.DeclaredOnly);
原文链接:https://www.f2er.com/csharp/100569.html

猜你在找的C#相关文章