CaptureCollection.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 beginning 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 destination array where copying is to begin.
Implements
Exceptions
Exception | Condition |
---|---|
ArgumentNullException | array is nulla null reference (Nothing in Visual Basic). |
ArgumentOutOfRangeException | arrayIndex is outside the bounds of array. -or- arrayIndex plus CaptureCollection.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.
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.