System.ComponentModel.EventDescriptorCollection.this C# (CSharp) Méthode

this() public méthode

public this ( int index ) : EventDescriptor
index int
Résultat 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