[This is preliminary documentation and is subject to change.]

When overriden in derived class determines the index of a specific item in the IList.

Namespace: Tools.CollectionsT.GenericT
Assembly: Tools (in Tools.dll) Version: 1.5.3.38916 (1.5.3.38916)

Syntax

C#
public abstract int IndexOf(
	Object value
)
Visual Basic
Public MustOverride Function IndexOf ( _
	value As Object _
) As Integer
Visual C++
public:
virtual int IndexOf(
	Object^ value
) abstract
F#
abstract IndexOf : 
        value:Object -> int 
JScript
public abstract function IndexOf(
	value : Object
) : int

Parameters

value
Type: System..::..Object
The Object to locate in the IList.

Return Value

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

Implements

IList..::..IndexOf(Object)

See Also