PagedDataSource.CopyTo(Array, Int32) Method

Definition

Copies all the items from the data source to the specified Array, starting at the specified index in the Array.

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

A zero-based Array that receives the copied items from the data source.

index
Int32

The first position in the specified Array to receive the copied contents.

Implements

Remarks

Use this method to copy the contents of the data source into the specified System.Array, starting at the specified index. The System.Array is often used to iterate through the items in the data source.

Applies to

See also