Click or drag to resize
MatchCollectionCopyTo Method
Copies all the elements of the collection to the given array starting at the given index.

Namespace: System.Text.RegularExpressions
Assembly: CSharpXamlForHtml5.System.dll (in CSharpXamlForHtml5.System.dll.dll) Version: 1.0.0.0
Syntax
C#
public void CopyTo(
	Array array,
	int index
)

Parameters

array
Type: SystemArray
The array the collection is to be copied into.
index
Type: SystemInt32

[Missing <param name="index"/> documentation for "M:System.Text.RegularExpressions.MatchCollection.CopyTo(System.Array,System.Int32)"]

Implements

ICollectionCopyTo(Array, Int32)
Exceptions
ExceptionCondition
ArgumentExceptionarray is a multi-dimensional array.
IndexOutOfRangeExceptionarrayIndex is outside the bounds of array.-or-arrayIndex plus Count is outside the bounds of array.
See Also