TableRowCollection.IList.IndexOf(Object) 方法

定义

搜索指定的对象,并返回集合中第一个匹配项的从零开始的索引。

 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

参数

o
Object

要在集合中定位的对象。

返回

对象的第一个匹配项在集合中的从零开始的索引;否则,如果对象不在集合中,则为 -1。

实现

注解

通常,应使用 GetRowIndex 方法获取 对象中 TableRowCollection 元素的索引。

方法是 IList.IndexOf 显式接口成员实现。 它只能在 TableRowCollection 实例被强制转换为 IList 接口时使用。

适用于

另请参阅