Copies a range of elements from an Array starting at the specified source index and pastes them to another Array starting at the specified destination index. The length and the indexes are specified as 64-bit integers.
- sourceArray
- The Array that contains the data to copy.
- sourceIndex
- A 64-bit integer that represents the index in the sourceArray at which copying begins.
- destinationArray
- The Array that receives the data.
- destinationIndex
- A 64-bit integer that represents the index in the destinationArray at which storing begins.
- length
- A 64-bit integer that represents the number of elements to copy. The integer must be between zero and int.MaxValue, inclusive.
The sourceArray and destinationArray parameters must have the same number of dimensions. In addition, destinationArray must already have been dimensioned and must have a sufficient number of elements starting from the destinationIndex position to accommodate the copied data.
When copying between multidimensional arrays, the array behaves like a long one-dimensional array, where the rows (or columns) are conceptually laid end-to-end. For example, if an array has three rows (or columns) with four elements each, copying six elements from the beginning of the array would copy all four elements of the first row (or column) and the first two elements of the second row (or column). To start copying from the second element of the third row (or column), sourceIndex must be the upper bound of the first row (or column) plus the length of the second row (or column) plus two.
If sourceArray and destinationArray overlap, this method behaves as if the original values of sourceArray were preserved in a temporary location before destinationArray is overwritten.
[C++]
This method is equivalent to the standard C/C++ function memmove, not memcpy.
The arrays can be reference-type arrays or value-type arrays. Type downcasting is performed, as required.
When copying from a reference-type array to a value-type array, each element is unboxed and then copied. When copying from a value-type array to a reference-type array, each element is boxed and then copied.
When copying from a reference-type or value-type array to an object array, an object is created to hold each value or reference and then copied. When copying from an object array to a reference-type or value-type array and the assignment is not possible, an InvalidCastException is thrown.
If sourceArray and destinationArray are both reference-type arrays or are both arrays of type object, a shallow copy is performed. A shallow copy of an Array is a new Array containing references to the same elements as the original Array. The elements themselves or anything referenced by the elements are not copied. In contrast, a deep copy of an Array copies the elements and everything directly or indirectly referenced by the elements.
An ArrayTypeMismatchException is thrown if the arrays are of incompatible types. Type compatibility is defined as follows:
A type is compatible with itself.
A value type is compatible with object and with an interface type implemented by that value type. A value type is considered connected to an interface only if it implements that interface directly. Disconnected types are not compatible.
Two intrinsic (predefined) value types are compatible if copying from the source type to the destination type is a widening conversion. A widening conversion never loses information, whereas a narrowing conversion can lose information. For example, converting a 32-bit signed integer to a 64-bit signed integer is a widening conversion, and converting a 64-bit signed integer to a 32-bit signed integer is a narrowing conversion. For more information about conversions, see Convert.
A nonintrinsic (user-defined) value type is compatible only with itself.
Enumerations have an implicit conversion to Enum and to their underlying type.
If every element in sourceArray requires a downcast (for example, from a base class to a derived class or from an interface to an object) and one or more elements cannot be cast to the corresponding type in destinationArray, an InvalidCastException is thrown.
If this method throws an exception while copying, the state of destinationArray is undefined.
This method is an O(n) operation, where n is length.