TableRowCollection.IList.IndexOf(Object) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
搜索指定的对象,并返回集合中第一个匹配项的从零开始的索引。
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 接口时使用。