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

◆ this[int index] [2/3]

Implements System.Collections.IList.

Definition at line 23 of file ReadOnlyCollection.cs.

24 {
25 get
26 {
27 return list[index];
28 }
29 set
30 {
31 ThrowHelper.ThrowNotSupportedException(ExceptionResource.NotSupported_ReadOnlyCollection);
32 }
33 }