Get the index of the given collection entry

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

Syntax

Visual Basic (Declaration)
Public MustOverride Function GetIndex ( _
	entry As Object, _
	i As Integer _
) As Object
C#
public abstract Object GetIndex(
	Object entry,
	int i
)
Visual C++
public:
virtual Object^ GetIndex(
	Object^ entry, 
	int i
) abstract
JavaScript
function getIndex(entry, i);

Parameters

entry
Type: System..::.Object
i
Type: System..::.Int32

Return Value

Implements

IPersistentCollection..::.GetIndex(Object, Int32)

See Also