Array.Clone Method
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Creates a shallow copy of the Array.
Assembly: mscorlib (in mscorlib.dll)
A shallow copy of an Array copies only the elements of the Array, whether they are reference types or value types, but it does not copy the objects that the references refer to. The references in the new Array point to the same objects that the references in the original Array point to.
In contrast, a deep copy of an Array copies the elements and everything directly or indirectly referenced by the elements.
The clone is of the same Type as the original Array.
This method is an O(n) operation, where n is Length.