System.ComponentModel.EventDescriptorCollection.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 >= eventCount) {
                    throw new IndexOutOfRangeException();
                }
                EnsureEventsOwned();
                events[index] = (EventDescriptor)value;
            }
        }
        

Same methods

EventDescriptorCollection::this ( int index ) : EventDescriptor
EventDescriptorCollection::this ( string name ) : EventDescriptor