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

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
)
Visual Basic
Public Sub New ( _
	capacity As Integer, _
	loadFactor As Single _
)
Visual C++
public:
SequencedHashMap(
	int capacity, 
	float 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