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

MatchCollection.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 starting 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 array where copying is to begin.

Implements

ICollection.CopyTo(Array, Int32)

ExceptionCondition
ArgumentException

array is a multi-dimensional array.

IndexOutOfRangeException

arrayIndex is outside the bounds of array.

-or-

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

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

Version Notes

Windows Phone

 If you pass an invalid value to CopyTo, the method throws ArgumentOutOfRangeException instead of ArgumentException.

Windows Phone OS

Supported in: 8.1, 8.0, 7.1, 7.0

Windows Phone

Show:
© 2017 Microsoft