在Type.GetProperties(Flags)中,我们可以使用’Flags’过滤我们得到的属性;在TypeDescriptor.GetProperties()中,我们没有.
在type.GetProperties中,我可以过滤以获取不继承的属性.可以使用TypeDescriptor.GetProperties()(仅属性不继承)也可以这样做吗?
谢谢
TypeDescriptor.GetProperties()用于获取PropertyDescriptor实例,可以使用特定属性进行过滤.
Type.GetProperties()用于获取PropertyInfo实例,可以使用特定的BindingFlags进行过滤.