System.ComponentModel.PropertyDescriptor.FillAttributes C# (CSharp) Method

FillAttributes() protected method

In an inheriting class, adds the attributes of the inheriting class to the specified list of attributes in the parent class. For duplicate attributes, the last one added to the list will be kept.
protected FillAttributes ( IList attributeList ) : void
attributeList IList
return void
        protected override void FillAttributes(IList attributeList)
        {
            // Each time we fill our attributes, we should clear our cached
            // stuff.
            _converter = null;
            _editors = null;
            _editorTypes = null;
            _editorCount = 0;

            base.FillAttributes(attributeList);
        }