Foley .NET Utilities Class Library

LinkedList.IndexOf Method 

Searches for the specified Object and returns the zero-based index of the first occurrence within the LinkedList.

[Visual Basic]
Overrides Public Function IndexOf( _
   ByVal value As Object _
) As Integer Implements _
   IList.IndexOf
[C#]
public override int IndexOf(
   object value
);

Parameters

value
The Object to locate in the LinkedList.

Return Value

The zero-based index of the first occurrence of value within the LinkedList, if found; otherwise, -1.

Implements

IList.IndexOf

See Also

LinkedList Class | LinkedList Members | Foley.Utilities.Collections Namespace