Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ this[int index] [2/2]

object? IList. System.ComponentModel.EventDescriptorCollection.this[int index]
getsetprivate

Implements System.Collections.Generic.IList< T >.

Definition at line 88 of file EventDescriptorCollection.cs.

89 {
90 get
91 {
92 return this[index];
93 }
94 set
95 {
96 if (_readOnly)
97 {
98 throw new NotSupportedException();
99 }
100 if (index >= Count)
101 {
102 throw new IndexOutOfRangeException();
103 }
105 _events[index] = (EventDescriptor)value;
106 }
107 }