Click or drag to resize

BTreeMapKey, ValueCopyTo Method

Copies a range of elements from the BTreeBase to a compatible one-dimensional array, starting at the specified index of the target array.

Namespace:  VelocityDb.Collection.BTree
Assembly:  VelocityDb (in VelocityDb.dll) Version: 11.1.0.0 (11.1)
Syntax
public void CopyTo(
	KeyValuePair<Key, Value>[] array,
	int arrayIndex,
	int count
)

Parameters

array
Type: System.Collections.GenericKeyValuePairKey, Value
The one-dimensional Array that is the destination of the elements copied from BTreeBase. The Array must have zero-based indexing.
arrayIndex
Type: SystemInt32
The zero-based index in the array at which copying begins.
count
Type: SystemInt32
The number of elements to copy.
See Also