Is there a way to find all the properties of a given type without the BrowsableAttribute explicitly set to Yes in .Net?
I've tried the following code without success (all the properties which are browsable by default are also returned):
PropertyDescriptorCollection browsableProperties = TypeDescriptor.GetProperties(type, new Attribute[] { BrowsableAttribute.Yes });