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

◆ GetValue() [4/8]

object? System.Array.GetValue ( long index)
inline

Definition at line 1064 of file Array.cs.

1065 {
1066 int num = (int)index;
1067 if (index != num)
1068 {
1069 ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument.index, ExceptionResource.ArgumentOutOfRange_HugeArrayNotSupported);
1070 }
1071 return GetValue(num);
1072 }
object? GetValue(params int[] indices)
Definition Array.cs:980

References System.Array.GetValue(), System.index, and System.ThrowHelper.ThrowArgumentOutOfRangeException().