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

◆ this[int index]

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

Definition at line 9 of file QilParameter.cs.

10 {
11 get
12 {
13 return index switch
14 {
15 0 => base.Binding,
16 1 => _name,
17 _ => throw new IndexOutOfRangeException(),
18 };
19 }
20 set
21 {
22 switch (index)
23 {
24 case 0:
26 break;
27 case 1:
28 _name = value;
29 break;
30 default:
31 throw new IndexOutOfRangeException();
32 }
33 }
34 }