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

◆ this[int index] [1/2]

object IList. System.Xml.Xsl.Runtime.XmlQuerySequence< T >.this[int index]
getsetprivate

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

Definition at line 28 of file XmlQuerySequence.cs.

29 {
30 get
31 {
32 if (index >= _size)
33 {
34 throw new ArgumentOutOfRangeException("index");
35 }
36 return _items[index];
37 }
38 set
39 {
40 throw new NotSupportedException();
41 }
42 }