MessagePackObjectDictionary Constructor (IDictionaryMessagePackObject, MessagePackObject) |
Namespace: MsgPackAssembly: MsgPack (in MsgPack.dll) Version: 0.6.0
Syntax public MessagePackObjectDictionary(
IDictionary<MessagePackObject, MessagePackObject> dictionary
)
Public Sub New (
dictionary As IDictionary(Of MessagePackObject, MessagePackObject)
)
public:
MessagePackObjectDictionary(
IDictionary<MessagePackObject, MessagePackObject>^ dictionary
)
new :
dictionary : IDictionary<MessagePackObject, MessagePackObject> -> MessagePackObjectDictionary
Parameters
- dictionary
- Type: System.Collections.GenericIDictionaryMessagePackObject, MessagePackObject
The dictionary to be copied from.
Exceptions Remarks
This constructor takes O(N) time, N is Count of dictionary.
Initial capacity will be Count of dictionary.
See Also