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

◆ this[int index] [2/2]

Implements System.Collections.Generic.IList< T >.

Definition at line 44 of file XmlQuerySequence.cs.

45 {
46 get
47 {
48 if (index >= _size)
49 {
50 throw new ArgumentOutOfRangeException("index");
51 }
52 return _items[index];
53 }
54 set
55 {
56 throw new NotSupportedException();
57 }
58 }