Creates an empty Hashtable with the default initial capacity and using the default load factor, the specified hash code provider and the specified comparer

Namespace: NHibernate.Util
Assembly: NHibernate (in NHibernate.dll) Version: 3.2.0.4000 (3.2.0.4000)

Syntax

C#
public SequencedHashMap(
	int capacity,
	float loadFactor,
	IEqualityComparer equalityComparer
)
Visual Basic
Public Sub New ( _
	capacity As Integer, _
	loadFactor As Single, _
	equalityComparer As IEqualityComparer _
)
Visual C++
public:
SequencedHashMap(
	int capacity, 
	float loadFactor, 
	IEqualityComparer^ equalityComparer
)

Parameters

capacity
Type: System..::..Int32
the initial size for the hashtable
loadFactor
Type: System..::..Single
the load factor for the hash table
equalityComparer
Type: System.Collections..::..IEqualityComparer

[Missing <param name="equalityComparer"/> documentation for "M:NHibernate.Util.SequencedHashMap.#ctor(System.Int32,System.Single,System.Collections.IEqualityComparer)"]

See Also