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

◆ this[int index]

object? ITuple. System.Tuple< T1, T2, T3, T4, T5, T6, T7, TRest >.this[int index]
getprivate

Implements System.Runtime.CompilerServices.ITuple.

Definition at line 96 of file Tuple.cs.

97 {
98 get
99 {
100 if (index != 0)
101 {
102 throw new IndexOutOfRangeException();
103 }
104 return Item1;
105 }
106 }