Determines the index of a specific item in the IList<(Of <(T>)>).

Namespace:  Mindscape.LightSpeed
Assembly:  Mindscape.LightSpeed (in Mindscape.LightSpeed.dll)
Version: 4.0.0.0 (4.0.0.0)

Syntax

C#
public int IndexOf(
	TTarget item
)
Visual Basic (Declaration)
Public Function IndexOf ( _
	item As TTarget _
) As Integer

Parameters

item
Type: TTarget
The object to locate in the IList<(Of <(T>)>).

Return Value

The index of item if found in the list; otherwise, -1.

Implements

IList<(Of <(T>)>)..::.IndexOf(T)

See Also