反射类型与类型描述符
最近我一直在使用反射在我的项目中工作,我有一个当前的问题。
在 Type.GetProperties(Flags)
中,我们可以使用“Flags”过滤获取的属性;在 TypeDescriptor.GetProperties()
中,我们没有。
在 type.GetProperties
中,我可以过滤以仅获取未继承的属性。 是否可以对 TypeDescriptor.GetProperties() 执行相同的操作(仅限未继承的属性)?
谢谢
Lately I have been using reflection to work in my project, and I have the current question.
While in Type.GetProperties(Flags)
, we can filter the properties we get using 'Flags'; in TypeDescriptor.GetProperties()
, we don't.
In type.GetProperties
I can filter to get only properties not inherited.
Is it possible to do the same with TypeDescriptor.GetProperties()
(only properties not inherited)?
Thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不,你不能。
TypeDescriptor.GetProperties()
用于获取PropertyDescriptor
实例,并可以使用特定的Attribute
进行过滤。Type.GetProperties()
用于获取PropertyInfo
实例,并可以使用特定的BindingFlags
进行过滤。No, you can't.
The
TypeDescriptor.GetProperties()
is used to getPropertyDescriptor
instances with possibility to filter using specificAttribute
s.The
Type.GetProperties()
is used to getPropertyInfo
instances with possibility to filter using specificBindingFlags
.