System.ComponentModel.PropertyDescriptorCollection.PropertyDescriptorCollection C# (CSharp) Method

PropertyDescriptorCollection() private method

private PropertyDescriptorCollection ( PropertyDescriptor properties, int propCount, string namedSort, IComparer comparer ) : System.Diagnostics.CodeAnalysis
properties PropertyDescriptor
propCount int
namedSort string
comparer IComparer
return System.Diagnostics.CodeAnalysis
        private PropertyDescriptorCollection(PropertyDescriptor[] properties, int propCount, string[] namedSort, IComparer comparer) {
            this.propsOwned = false;
            if (namedSort != null) {
               this.namedSort = (string[])namedSort.Clone();
            }
            this.comparer = comparer;
            this.properties = properties;
            this.propCount = propCount;
            this.needSort = true;
        }

Same methods

PropertyDescriptorCollection::PropertyDescriptorCollection ( PropertyDescriptor properties ) : System.Diagnostics.CodeAnalysis
PropertyDescriptorCollection::PropertyDescriptorCollection ( PropertyDescriptor properties, bool readOnly ) : System.Diagnostics.CodeAnalysis