- CopyTo() method copies the contents of an existing array into another array
- Clone() method creates a new Array and copies all the elements into new Array
- Both the methods perform a shallow copy of the array elements
What is the difference between CopyTo and Clone methods?
- CopyTo() method copies the contents of an existing array into another array
- Clone() method creates a new Array and copies all the elements into new Array
- Both the methods perform a shallow copy of the array elements