此代码返回我创建的字段,但也返回一些系统字段(我在
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);