FileBackedDictionaryTKey, TValue, TKeyElem, TValueElem(IDictionaryTKey, TValue) Constructor

Creates a new instance of the FileBackedDictionaryTKey, TValue class.

Definition

Namespace: Gemstone.IO.Collections
Assembly: Gemstone.IO (in Gemstone.IO.dll) Version: 1.0.160 -- Release Build+169caca5192ac5075949df0220a553c99300004a
public FileBackedDictionary(
	IDictionary<TKey, TValue> dictionary
)

Parameters

dictionary  IDictionaryTKey, TValue
The dictionary whose elements are copied to this dictionary.

Remarks

This constructor uses the default equality comparer for file backed lookup tables, which is not the same as the default equality comparer for TKey objects. This is because the default implementation of GetHashCode does not provide guarantees about consistency across platforms, or even implementations of the CLR. Instead, the default equality comparer uses a byte-for-byte comparison to determine equality between keys and a CRC-32 for its hash code implementation. This means the performance of the hashing function is dependent on the performance of the serialization function.

Exceptions

ArgumentNullExceptiondictionary is null.
InvalidOperationExceptionEither TKey or TValue cannot be serialized.

See Also