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

◆ this[int index]

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

Implements System.Collections.IList.

Definition at line 15 of file ReadOnlyList.cs.

16 {
17 get
18 {
19 return _list[index];
20 }
21 set
22 {
23 throw new NotSupportedException(System.SR.NotSupported_ReadOnlyCollection);
24 }
25 }
static string NotSupported_ReadOnlyCollection
Definition SR.cs:28
Definition SR.cs:7