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

◆ this[int index]

override QilNode System.Xml.Xsl.Qil.QilUnary.this[int index]
getset

Definition at line 9 of file QilUnary.cs.

10 {
11 get
12 {
13 if (index != 0)
14 {
15 throw new IndexOutOfRangeException();
16 }
17 return _child;
18 }
19 set
20 {
21 if (index != 0)
22 {
23 throw new IndexOutOfRangeException();
24 }
25 _child = value;
26 }
27 }