[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.GenericTAssembly: 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 |
| JScript |
|---|
public abstract function IndexOf(
value : Object
) : int |
Return Value
The index of
value if found in the list; otherwise, -1.
Implements
IList..::..IndexOf(Object)
See Also