NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

Array.Copy

Copies a section of one Array to another Array, and performs type-downcasting as required.

Overload List

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);

See Also

Array Class | Array Members | System Namespace