Create a new instance of the IdentityMap that has an iteration order of the order the objects were added to the Map.

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

Syntax

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

Parameters

size
Type: System..::.Int32

Return Value

A new IdentityMap based on ListDictionary.

See Also