CaptureCollection.CopyTo Method

Definition

Overloads

CopyTo(Array, Int32)

Copies all the elements of the collection to the given array beginning at the given index.

CopyTo(Capture[], Int32)

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

CopyTo(Array, Int32)

Copies all the elements of the collection to the given array beginning at the given index.

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

Parameters

array
Array

The array the collection is to be copied into.

arrayIndex
Int32

The position in the destination array where copying is to begin.

Implements

Exceptions

array is null.

arrayIndex is outside the bounds of array.

-or-

arrayIndex plus Count is outside the bounds of array.

Remarks

Because the entire collection is copied into the array starting at the given index, the destination array must be at least as large as the collection.

Warning

This member is not present in the Portable Class Library. If you are developing applications that target the Portable Class Library, use the CaptureCollection.ICollection.CopyTo method instead.

Applies to

CopyTo(Capture[], Int32)

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

public:
 virtual void CopyTo(cli::array <System::Text::RegularExpressions::Capture ^> ^ array, int arrayIndex);
public void CopyTo (System.Text.RegularExpressions.Capture[] array, int arrayIndex);
abstract member CopyTo : System.Text.RegularExpressions.Capture[] * int -> unit
override this.CopyTo : System.Text.RegularExpressions.Capture[] * int -> unit
Public Sub CopyTo (array As Capture(), arrayIndex As Integer)

Parameters

array
Capture[]

The one-dimensional Array that is the destination of the elements copied from the collection. The Array must have zero-based indexing.

arrayIndex
Int32

The zero-based index in array at which copying begins.

Implements

Exceptions

array is null.

arrayIndex is less than 0.

The number of elements in the source collection is greater than the available space from arrayIndex to the end of the destination array.

Applies to