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

this() public method

public this ( int index ) : PropertyDescriptor
index int
return PropertyDescriptor
        public virtual PropertyDescriptor this[int index] {
            get {
                if (index >= propCount) {
                    throw new IndexOutOfRangeException();
                }
                EnsurePropsOwned();
                return properties[index];
            }
        }
        

Same methods

PropertyDescriptorCollection::this ( string name ) : PropertyDescriptor
PropertyDescriptorCollection::this ( object key ) : objectIDictionary.System.Diagnostics.CodeAnalysis
PropertyDescriptorCollection::this ( int index ) : objectIList.System.Diagnostics.CodeAnalysis