ReadOnlyCollectionTCopyTo Method

CVB.Net Documentation
Copies the entire collection to a compatible one-dimensional array, starting at the specified arrayIndex.

Namespace:  Stemmer.Cvb.Collections.Generic
Assembly:  Stemmer.Cvb (in Stemmer.Cvb.dll) Version: 14.0.0.0
Syntax

public void CopyTo(
	T[] array,
	int arrayIndex
)

Parameters

array
Type: T
Destination array.
arrayIndex
Type: SystemInt32
Zero-based index at which copying begins.

Implements

ICollectionTCopyTo(T, Int32)
Exceptions

ExceptionCondition
ArgumentNullExceptionarray is .
ArgumentOutOfRangeExceptionarrayIndex is less than zero.
ArgumentException The number of elements in this collection is greater than the available space in array.
See Also

Reference