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

◆ this[int index]

Definition at line 14 of file ListProvider.cs.

15 {
16 get
17 {
18 if (index == 0)
19 {
20 return First;
21 }
22 return GetElement(index);
23 }
24 [ExcludeFromCodeCoverage(Justification = "Unreachable")]
25 set
26 {
27 throw ContractUtils.Unreachable;
28 }
29 }