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

◆ this[int index]

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

Definition at line 28 of file QilExpression.cs.

29 {
30 get
31 {
32 return index switch
33 {
34 0 => _isDebug,
35 1 => _defWSet,
36 2 => _wsRules,
37 3 => _gloParams,
38 4 => _gloVars,
39 5 => _earlBnd,
40 6 => _funList,
41 7 => _rootNod,
42 _ => throw new IndexOutOfRangeException(),
43 };
44 }
45 set
46 {
47 switch (index)
48 {
49 case 0:
51 break;
52 case 1:
54 break;
55 case 2:
57 break;
58 case 3:
60 break;
61 case 4:
63 break;
64 case 5:
66 break;
67 case 6:
69 break;
70 case 7:
72 break;
73 default:
74 throw new IndexOutOfRangeException();
75 }
76 }
77 }