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

this() public method

public this ( int index ) : EventDescriptor
index int
return EventDescriptor
        public virtual EventDescriptor this[int index] {
            get {
                if (index >= eventCount) {
                    throw new IndexOutOfRangeException();
                }
                EnsureEventsOwned();
                return events[index];
            }
        }

Same methods

EventDescriptorCollection::this ( string name ) : EventDescriptor
EventDescriptorCollection::this ( int index ) : objectIList.System.Diagnostics.CodeAnalysis