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: MsgPackAssembly: MsgPack (in MsgPack.dll) Version: 0.6.0
Syntax public void CopyTo(
int index,
MessagePackObject[] array,
int arrayIndex,
int count
)
Public Sub CopyTo (
index As Integer,
array As MessagePackObject(),
arrayIndex As Integer,
count As Integer
)
public:
void CopyTo(
int index,
array<MessagePackObject>^ array,
int arrayIndex,
int count
)
member CopyTo :
index : int *
array : MessagePackObject[] *
arrayIndex : int *
count : int -> unit
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