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

◆ CopyTo() [2/3]

void System.Array.CopyTo ( Array array,
long index )
inline

Definition at line 1564 of file Array.cs.

1565 {
1566 int num = (int)index;
1567 if (index != num)
1568 {
1569 ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument.index, ExceptionResource.ArgumentOutOfRange_HugeArrayNotSupported);
1570 }
1571 CopyTo(array, num);
1572 }
void CopyTo(Array array, int index)
Definition Array.cs:1555

References System.array, System.Array.CopyTo(), System.index, and System.ThrowHelper.ThrowArgumentOutOfRangeException().