- The Clone() method returns a new array (a shallow copy) object containing all the elements in the original array.
- The CopyTo() method copies the elements into another existing array.
- Both perform a shallow copy which means the contents (each array element) contains references to the same object as the elements in the original array.
No comments:
Post a Comment