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

◆ this[int index]

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

Implements System.Collections.IList.

Definition at line 1354 of file ArrayList.cs.

1355 {
1356 get
1357 {
1358 return _list[index];
1359 }
1360 set
1361 {
1362 throw new NotSupportedException(SR.NotSupported_ReadOnlyCollection);
1363 }
1364 }