Create a new instance of the IdentityMap that has no iteration order.

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

Syntax

Visual Basic (Declaration)
Public Shared Function Instantiate ( _
	size As Integer _
) As IDictionary
C#
public static IDictionary Instantiate(
	int size
)
Visual C++
public:
static IDictionary^ Instantiate(
	int size
)
JavaScript
NHibernate.Util.IdentityMap.instantiate = function(size);

Parameters

size
Type: System..::.Int32

Return Value

A new IdentityMap based on a Hashtable.

See Also