Click or drag to resize
MessagePackObjectDictionary Constructor (IDictionaryMessagePackObject, MessagePackObject)
Initializes a new instance of the MessagePackObjectDictionary class.

Namespace: MsgPack
Assembly: MsgPack (in MsgPack.dll) Version: 0.6.0
Syntax
public MessagePackObjectDictionary(
	IDictionary<MessagePackObject, MessagePackObject> dictionary
)

Parameters

dictionary
Type: System.Collections.GenericIDictionaryMessagePackObject, MessagePackObject
The dictionary to be copied from.
Exceptions
ExceptionCondition
ArgumentNullExceptiondictionary is null.
ArgumentException Failed to copy from dictionary.
Remarks
This constructor takes O(N) time, N is Count of dictionary. Initial capacity will be Count of dictionary.
See Also