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

this() private method

private this ( int index ) : objectIList.System.Diagnostics.CodeAnalysis
index int
return objectIList.System.Diagnostics.CodeAnalysis
        object IList.this[int index] {
            get {
                return this[index];
            }
            set {
                if (readOnly) {
                    throw new NotSupportedException();
                }

                if (index >= propCount) {
                    throw new IndexOutOfRangeException();
                }


                if (value != null && !(value is PropertyDescriptor)) {
                    throw new ArgumentException("value");
                }

                EnsurePropsOwned();
                properties[index] = (PropertyDescriptor)value;
            }
        }

Same methods

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