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

◆ SetValue() [4/8]

void System.Array.SetValue ( object? value,
long index )
inline

Definition at line 1133 of file Array.cs.

1134 {
1135 int num = (int)index;
1136 if (index != num)
1137 {
1138 ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument.index, ExceptionResource.ArgumentOutOfRange_HugeArrayNotSupported);
1139 }
1140 SetValue(value, num);
1141 }
unsafe void SetValue(object? value, int index)
Definition Array.cs:1022

References System.index, System.Array.SetValue(), System.ThrowHelper.ThrowArgumentOutOfRangeException(), and System.value.