Copies the dictionary to the given array.

Namespace:  Endeca.Web.Url.Seo.Utility
Assembly:  Endeca.Web.Url.Seo (in Endeca.Web.Url.Seo.dll) Version: 2.1.1.0 (2.1.1.0)

Syntax

C#
public void CopyTo(
	KeyValuePair<T, U>[] array,
	int arrayIndex
)
Visual Basic (Declaration)
Public Sub CopyTo ( _
	array As KeyValuePair(Of T, U)(), _
	arrayIndex As Integer _
)
Visual C++
public:
virtual void CopyTo(
	array<KeyValuePair<T, U>>^ array, 
	int arrayIndex
) sealed

Parameters

array
Type: array< System.Collections.Generic..::.KeyValuePair<(Of <(T, U>)>) >[]()[]
Array to copy dictionary to.
arrayIndex
Type: System..::.Int32
Index in array at which to start the copy

Implements

ICollection<(Of <(T>)>)..::.CopyTo(array<T>[]()[], Int32)

See Also