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)

Syntax

Public Sub CopyTo ( _
    array As Array, _
    arrayIndex As Integer _
)
public void CopyTo(
    Array array,
    int arrayIndex
)

Parameters

  • arrayIndex
    Type: System..::.Int32
    The position in the array where copying is to begin.

Implements

ICollection..::.CopyTo(Array, Int32)

Exceptions

Exception Condition
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.

Remarks

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.

Version Information

Windows Phone OS

Supported in: 8.1, 8.0, 7.1, 7.0

Platforms

Windows Phone

See Also

Reference

MatchCollection Class

System.Text.RegularExpressions Namespace