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

◆ this[int index] [3/3]

object? IList. System.Collections.ObjectModel.ReadOnlyCollection< T >.this[int index]
getsetprivateinherited

Implements System.Collections.IList.

Definition at line 53 of file ReadOnlyCollection.cs.

54 {
55 get
56 {
57 return list[index];
58 }
59 set
60 {
61 ThrowHelper.ThrowNotSupportedException(ExceptionResource.NotSupported_ReadOnlyCollection);
62 }
63 }