CopyTo Method
Collapse the table of content
Expand the table of content

CaptureCollection.CopyTo Method

[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]

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

Namespace:  System.Text.RegularExpressions
Assembly:  System (in System.dll)

'Declaration
Public Sub CopyTo ( _
	array As Array, _
	arrayIndex As Integer _
)

Parameters

array
Type: System.Array
The array the collection is to be copied into.
arrayIndex
Type: System.Int32
The position in the destination array where copying is to begin.

Implements

ICollection.CopyTo(Array, Int32)

ExceptionCondition
ArgumentNullException

array is Nothing.

ArgumentOutOfRangeException

arrayIndex is outside the bounds of array.

-or-

arrayIndex plus CaptureCollection.Count is outside the bounds of array.

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.

Windows Phone OS

Supported in: 8.1, 8.0, 7.1, 7.0

Windows Phone

Show:
© 2017 Microsoft