MessagePackObjectDictionaryValueCollectionCopyTo Method (MessagePackObject) |
Copies the entire collection to a compatible one-dimensional array, starting at the beginning of the target array.
Namespace: MsgPackAssembly: MsgPack (in MsgPack.dll) Version: 0.6.0
Syntax public void CopyTo(
MessagePackObject[] array
)
Public Sub CopyTo (
array As MessagePackObject()
)
public:
void CopyTo(
array<MessagePackObject>^ array
)
member CopyTo :
array : MessagePackObject[] -> unit
Parameters
- 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.
See Also