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

◆ this[int index]

object System.Collections.ArrayList.ReadOnlyList.this[int index]
getset

Implements System.Collections.IList.

Definition at line 1277 of file ArrayList.cs.

1278 {
1279 get
1280 {
1281 return _list[index];
1282 }
1283 set
1284 {
1285 throw new NotSupportedException(SR.NotSupported_ReadOnlyCollection);
1286 }
1287 }