SortedList(Of TKey, TValue).ICollection(Of KeyValuePair(Of TKey, TValue)).CopyTo Method (KeyValuePair(Of TKey, TValue)(), Int32)

 

Copies the elements of the ICollection(Of T) to an Array, starting at a particular Array index.

Namespace:   System.Collections.Generic
Assembly:  System (in System.dll)

Private Sub CopyTo (
	array As KeyValuePair(Of TKey, TValue)(),
	arrayIndex As Integer
)
	Implements ICollection(Of KeyValuePair(Of TKey, TValue)).CopyTo

Parameters

array
Type: System.Collections.Generic.KeyValuePair(Of TKey, TValue)()

The one-dimensional Array that is the destination of the elements copied from ICollection(Of T). The Array must have zero-based indexing.

arrayIndex
Type: System.Int32

The zero-based index in array at which copying begins.

Exception Condition
ArgumentNullException

array is null.

ArgumentOutOfRangeException

arrayIndex is less than zero.

ArgumentException

The number of elements in the source ICollection(Of T) is greater than the available space from arrayIndex to the end of the destination array.

This method determines equality using the default comparer Default for KeyValuePair(Of TKey, TValue).

This method is an O(n) operation, where n is Count.

Universal Windows Platform
Available since 10
.NET Framework
Available since 2.0
Return to top
Show: