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

◆ this[int index]

XPathItem IList<XPathItem>. System.Xml.Xsl.Runtime.XmlQueryNodeSequence.this[int index]
getsetprivate

Definition at line 33 of file XmlQueryNodeSequence.cs.

34 {
35 get
36 {
37 if (index >= base.Count)
38 {
39 throw new ArgumentOutOfRangeException("index");
40 }
41 return base[index];
42 }
43 set
44 {
45 throw new NotSupportedException();
46 }
47 }