Click or drag to resize
SerializationReader.ReadDictionary<K, V> Method (Dictionary<K, V>)
Populates a pre-existing generic dictionary with keys and values from the stream. This allows a generic dictionary to be created without using the default constructor.

Namespace:  SD.LLBLGen.Pro.ORMSupportClasses
Assembly:  SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.2.0.0 (5.2.17.0403)
Syntax
public void ReadDictionary<K, V>(
	Dictionary<K, V> dictionary
)

Parameters

dictionary
Type: System.Collections.Generic.Dictionary<K, V>

Type Parameters

K
The key Type.
V
The value Type.
See Also