Click or drag to resize
MessagePackObjectDictionaryValueCollectionCopyTo Method (Int32, MessagePackObject, Int32, Int32)
Copies a range of elements from this collection to a compatible one-dimensional array, starting at the specified index of the target array.

Namespace: MsgPack
Assembly: MsgPack (in MsgPack.dll) Version: 0.6.0
Syntax
public void CopyTo(
	int index,
	MessagePackObject[] array,
	int arrayIndex,
	int count
)

Parameters

index
Type: SystemInt32
The zero-based index in the source dictionary at which copying begins.
array
Type: MsgPackMessagePackObject
The one-dimensional Array that is the destination of the elements copied from this dictionary. The Array must have zero-based indexing.
arrayIndex
Type: SystemInt32
The zero-based index in array at which copying begins.
count
Type: SystemInt32
The number of elements to copy.
See Also