SerializationWriterWriteK, V Method (DictionaryK, V) |
Writes a non-null generic Dictionary into the stream.
Namespace:
SD.LLBLGen.Pro.ORMSupportClasses
Assembly:
SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.4.0.0 (5.4.0)
Syntax public void Write<K, V>(
Dictionary<K, V> value
)
Public Sub Write(Of K, V) (
value As Dictionary(Of K, V)
)
Parameters
- value
- Type: System.Collections.GenericDictionaryK, V
The generic dictionary.
Type Parameters
- K
- The key Type.
- V
- The value Type.
Remarks
The key and value types themselves are not stored - they must be
supplied at deserialization time.
An array of keys is stored followed by an array of values.
See Also