|
RedBlackTreeTCopyTo Method (RedBlackTreeNodeT, Int32)
|
Copies the nodes of this tree to an array, starting at a
particular arrayIndex.
Namespace:
Accord.Collections
Assembly:
Accord (in Accord.dll) Version: 3.8.0
Syntax public void CopyTo(
RedBlackTreeNode<T>[] array,
int arrayIndex
)
Public Sub CopyTo (
array As RedBlackTreeNode(Of T)(),
arrayIndex As Integer
)
Request Example
View SourceParameters
- array
- Type: Accord.CollectionsRedBlackTreeNodeT
The one-dimensional array that is the destination of the elements
copied from this tree. The array must have zero-based indexing.
- arrayIndex
- Type: SystemInt32
The zero-based index in array at which copying begins.
See Also