Click or drag to resize

SerializationWriter.Write<K, V> Method (Dictionary<K, 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.8.0.0 (5.8.21.0111)
Syntax
public void Write<K, V>(
	Dictionary<K, V> value
)

Parameters

value
Type: System.Collections.Generic.Dictionary<K, 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