Construct a new sequenced hash map with the specified initial size and load factor

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

Syntax

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

Parameters

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

See Also