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

◆ Copy() [2/5]

static void System.Array.Copy ( Array sourceArray,
Array destinationArray,
long length )
inlinestatic

Definition at line 950 of file Array.cs.

951 {
952 int num = (int)length;
953 if (length != num)
954 {
955 ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument.length, ExceptionResource.ArgumentOutOfRange_HugeArrayNotSupported);
956 }
958 }
static unsafe void Copy(Array sourceArray, Array destinationArray, int length)
Definition Array.cs:624

References System.Array.Copy(), System.destinationArray, System.length, System.sourceArray, and System.ThrowHelper.ThrowArgumentOutOfRangeException().