Copies a section of one Array to another Array, and performs type-downcasting as required.
Copies a range of elements from a one-dimensional Array starting at the lower bound index, and pastes them into another one-dimensional Array starting at the lower bound index.
[Visual Basic] Overloads Public Shared Sub Copy(Array, Array, Integer)
[C#] public static void Copy(Array, Array, int);
[C++] public: static void Copy(Array*, Array*, int);
[JScript] public static function Copy(Array, Array, int);
Copies a range of elements from a one-dimensional Array starting at the specified source index, and pastes them into another one-dimensional Array starting at the specified destination index.
[Visual Basic] Overloads Public Shared Sub Copy(Array, Integer, Array, Integer, Integer)
[C#] public static void Copy(Array, int, Array, int, int);
[C++] public: static void Copy(Array*, int, Array*, int, int);
[JScript] public static function Copy(Array, int, Array, int, int);