Consider the following code.
Object obj;
PropertyDescriptorCollection A = TypeDescriptor.GetProperties(obj);
PropertyInfo[] B = obj.GetType().GetProperties();
I’m trying to understand the difference between A and B. From what I understand TypeDescriptor.GetProperties() will return custom TypeDescriptor properties, where as Type.GetProperties() will only return intrinsic "real" properties of the object. Is this right? If obj doesn’t have any custom TypeDescriptor properties then it just defaults to also returning the literal intrinsic properties of the object.
obj.GetType().GetProperties()does not return aPropertyDescriptorCollection, it returns aSystem.Reflection.PropertyInfo[]. ThePropertyInfoclass does, as you suggest, represent only actual properties created on the object. APropertyDescriptoris either a custom concrete child of thePropertyDescriptorclass (implemented by the type defining the custom descriptor), or is an instance of the sealed internal classReflectPropertyDescriptorthat uses thePropertyInfoclass to provide dynamic invocation of the property.So for a class that does not define a custom descriptor, you will functionally get the same objects back, though the
PropertyDescriptoris abstracting away thePropertyInfo.