-
Notifications
You must be signed in to change notification settings - Fork 35
Overload_CodeJam_Collections_ArrayExtensions_Copy
Andrew Koryavchenko edited this page Jul 4, 2017
·
3 revisions
Name | Description | |
---|---|---|
Copy(Array, Array, Int32) | Copies a range of elements from an Array starting at the first element and pastes them into another Array starting at the first element. The length is specified as a 32-bit integer. | |
Copy(Array, Array, Int64) | Copies a range of elements from an Array starting at the first element and pastes them into another Array starting at the first element. The length is specified as a 64-bit integer. | |
Copy(Array, Int32, Array, Int32, Int32) | 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. | |
Copy(Array, Int64, Array, Int64, Int64) | 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 32-bit integers. |