List<T>.IList.IndexOf(Object) 方法

定义

确定 IList 中特定项的索引。

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

参数

item
Object

要在 IList 中定位的对象。

返回

如果在列表中找到,则为 item 的索引;否则为 -1。

实现

例外

item 是一个无法赋值给 IList 的类型。

注解

此方法使用 的默认相等比较器 EqualityComparer<T>.Default 确定相等性,即 T列表中的值类型。

此方法执行线性搜索;因此,此方法是 O (n) 操作,其中 nCount

适用于