MatchCollection.CopyTo Method

Microsoft Silverlight will reach end of support after October 2021. Learn more.

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

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

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)

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.

Platform Notes

Silverlight for Windows Phone Silverlight for Windows Phone

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

Version Information

Silverlight

Supported in: 5, 4, 3

Silverlight for Windows Phone

Supported in: Windows Phone OS 7.1, Windows Phone OS 7.0

XNA Framework

Supported in: Xbox 360, Windows Phone OS 7.0

Platforms

For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.