Construct a new sequenced hash map with the specified initial size, hash code provider and comparer

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

Syntax

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

Parameters

capacity
Type: System..::.Int32
the initial size for the hashtable
hcp
Type: System.Collections..::.IHashCodeProvider
comparer
Type: System.Collections..::.IComparer

See Also