加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 百科 > 正文

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

发布时间:2020-12-15 17:15:00 所属栏目:百科 来源:网络整理
导读:此代码返回我创建的字段,但也返回一些系统字段(我在 WPF应用程序中)我没有创建自己: FieldInfo[] fieldInfos;fieldInfos = this.GetType().GetFields(BindingFlags.NonPublic | BindingFlags.Instance); 如何排除系统字段并只保留自己的字段? 更新:这些字
此代码返回我创建的字段,但也返回一些系统字段(我在 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);

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读