反射类型与类型描述符

发布于 2024-10-21 12:18:04 字数 307 浏览 1 评论 0原文

最近我一直在使用反射在我的项目中工作,我有一个当前的问题。

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

嗫嚅 2024-10-28 12:18:04

不,你不能。

TypeDescriptor.GetProperties() 用于获取 PropertyDescriptor 实例,并可以使用特定的Attribute进行过滤。

Type.GetProperties() 用于获取 PropertyInfo 实例,并可以使用特定的 BindingFlags 进行过滤。

No, you can't.

The TypeDescriptor.GetProperties() is used to get PropertyDescriptor instances with possibility to filter using specific Attributes.

The Type.GetProperties() is used to get PropertyInfo instances with possibility to filter using specific BindingFlags.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文