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

◆ this[int index]

object System.Runtime.CompilerServices.RuntimeOps.MergedRuntimeVariables.this[int index]
getset

Implements System.Runtime.CompilerServices.IRuntimeVariables.

Definition at line 50 of file RuntimeOps.cs.

51 {
52 get
53 {
55 if (index < 0)
56 {
57 return _second[-1 - index];
58 }
59 return _first[index];
60 }
61 set
62 {
64 if (index >= 0)
65 {
67 }
68 else
69 {
70 _second[-1 - index] = value;
71 }
72 }
73 }