System.Windows.Forms.ListBindingHelper.GetListItemPropertiesByType C# (CSharp) Method

GetListItemPropertiesByType() private static method

private static GetListItemPropertiesByType ( Type type, Array listAccessors ) : System.Windows.Forms.PropertyDescriptorCollection
type Type
listAccessors Array
return System.Windows.Forms.PropertyDescriptorCollection
        private static PropertyDescriptorCollection GetListItemPropertiesByType(Type type, PropertyDescriptor[] listAccessors) {
            PropertyDescriptorCollection pdc = null;

            if ((null == listAccessors) || (listAccessors.Length == 0)) {
                pdc = GetListItemPropertiesByType(type);
            }
            else {
                pdc = GetListItemPropertiesByType(type, listAccessors, 0);
            }

            return pdc;
        }

Same methods

ListBindingHelper::GetListItemPropertiesByType ( Type type ) : System.Windows.Forms.PropertyDescriptorCollection
ListBindingHelper::GetListItemPropertiesByType ( Type type, Array listAccessors, int startIndex ) : System.Windows.Forms.PropertyDescriptorCollection