|
RedBlackTreeDictionaryTKey, TValueCopyTo Method
|
Copies the elements of this dictionary to an array, starting at a particular array index.
Namespace:
Accord.Collections
Assembly:
Accord (in Accord.dll) Version: 3.8.0
Syntax public void CopyTo(
KeyValuePair<TKey, TValue>[] array,
int arrayIndex
)
Public Sub CopyTo (
array As KeyValuePair(Of TKey, TValue)(),
arrayIndex As Integer
)
Request Example
View SourceParameters
- array
- Type: System.Collections.GenericKeyValuePairTKey, TValue
The one-dimensional Array that is the destination of the elements
copied from ICollection. The array must have zero-based indexing. - arrayIndex
- Type: SystemInt32
The zero-based index in array at which copying begins.
See Also