ItemCollection.CopyTo(Array, Int32) Method

Definition

Copies the elements of the collection to an array, starting at a particular array index.

public:
 virtual void CopyTo(Array ^ array, int index);
public void CopyTo (Array array, int index);
abstract member CopyTo : Array * int -> unit
override this.CopyTo : Array * int -> unit
Public Sub CopyTo (array As Array, index As Integer)

Parameters

array
Array

The destination array to copy to.

index
Int32

The zero-based index in the destination array.

Implements

Exceptions

The array parameter is null.

The destination array is multidimensional.

The index parameter is less than 0.

Applies to