TableRowCollection.IList.IndexOf(Object) Method

Definition

Searches for the specified object and returns the zero-based index of the first occurrence within the collection.

 virtual int System.Collections.IList.IndexOf(System::Object ^ o) = System::Collections::IList::IndexOf;
int IList.IndexOf (object o);
abstract member System.Collections.IList.IndexOf : obj -> int
override this.System.Collections.IList.IndexOf : obj -> int
Function IndexOf (o As Object) As Integer Implements IList.IndexOf

Parameters

o
Object

The object to locate within the collection.

Returns

The zero-based index of the first occurrence of the object within the collection; otherwise, -1 if the object is not in the collection.

Implements

Remarks

Typically, you should use the GetRowIndex method to get the index of an element in a TableRowCollection object.

The IList.IndexOf method is an explicit interface member implementation. It can be used only when the TableRowCollection instance is cast to an IList interface.

Applies to

See also