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

◆ IndexInRange< T >() [2/2]

static bool Terraria.Utils.IndexInRange< T > ( this T[] t,
int index )
inlinestatic

Definition at line 1834 of file Utils.cs.

1835 {
1836 if (index >= 0)
1837 {
1838 return index < t.Length;
1839 }
1840 return false;
1841 }

References System.Linq.index.