Wintellect.PowerCollections Namespace
Algorithms Class
GhostDoc Pro Sample Help File

ListBase<(Of <(<'T>)>)>..::..IndexOf Method (T)

Finds the index of the first item in the list that is equal to item.

Namespace:  Wintellect.PowerCollections
Assembly:  PowerCollections (in PowerCollections.dll)

Syntax


public virtual int IndexOf(
	T item
)
Public Overridable Function IndexOf ( _
	item As T _
) As Integer
public:
virtual int^ IndexOf(
	T item
)

Parameters

item
Type: T
The item to search fror.

Return Value

The index of the first item in the list that that is equal to item. If no item is equal to item, -1 is returned.

Remarks


The default implementation of equality for type T is used in the search. This is the equality defined by IComparable<T> or object.Equals.