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

◆ this[int index]

override object System.Collections.ArrayList.IListWrapper.this[int index]
getset

Implements System.Collections.IList.

Definition at line 128 of file ArrayList.cs.

129 {
130 get
131 {
132 return _list[index];
133 }
134 set
135 {
136 _list[index] = value;
137 _version++;
138 }
139 }