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)

Syntax

Visual Basic (Declaration)
Public Sub New ( _
	capacity As Integer, _
	loadFactor As Single, _
	hcp As IHashCodeProvider, _
	comparer As IComparer _
)
C#
public SequencedHashMap(
	int capacity,
	float loadFactor,
	IHashCodeProvider hcp,
	IComparer comparer
)
Visual C++
public:
SequencedHashMap(
	int capacity, 
	float loadFactor, 
	IHashCodeProvider^ hcp, 
	IComparer^ comparer
)
JavaScript
NHibernate.Util.SequencedHashMap = function(capacity, loadFactor, hcp, comparer);

Parameters

capacity
Type: System..::.Int32
the initial size for the hashtable
loadFactor
Type: System..::.Single
the load factor for the hash table
hcp
Type: System.Collections..::.IHashCodeProvider
comparer
Type: System.Collections..::.IComparer

See Also