Foley .NET Utilities Class Library

List2Base.LastIndexOf Method 

When implemented by a class, determines the index of the last occurrence of the specified Object in the list.

[Visual Basic]
MustOverride Public Function LastIndexOf( _
   ByVal value As Object _
) As Integer Implements _
   IList2.LastIndexOf
[C#]
public abstract int LastIndexOf(
   object value
);

Parameters

value
The Object to locate in the list.

Return Value

The zero-based index of the last occurrence of the value in the list, if found; otherwise, -1.

Implements

IList2.LastIndexOf

See Also

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