Click or drag to resize
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.3.0.0 (5.3.0)
Syntax
public void Write<K, V>(
	Dictionary<K, V> value
)

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