SerializationReaderReadDictionaryK, V Method (DictionaryK, 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.6.0.0 (5.6.19.0117)
Syntax public void ReadDictionary<K, V>(
Dictionary<K, V> dictionary
)
Public Sub ReadDictionary(Of K, V) (
dictionary As Dictionary(Of K, V)
)
Parameters
- dictionary
- Type: System.Collections.GenericDictionaryK, V
Type Parameters
- K
- The key Type.
- V
- The value Type.
See Also