ArraySegment<T>.IList<T>.IndexOf(T) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
确定数组段中特定项的索引。
virtual int System.Collections.Generic.IList<T>.IndexOf(T item) = System::Collections::Generic::IList<T>::IndexOf;
int IList<T>.IndexOf (T item);
abstract member System.Collections.Generic.IList<T>.IndexOf : 'T -> int
override this.System.Collections.Generic.IList<T>.IndexOf : 'T -> int
Function IndexOf (item As T) As Integer Implements IList(Of T).IndexOf
参数
- item
- T
要在数组段中查找的对象。
返回
如果在列表中找到,则为 item
的索引;否则为 -1。
实现
例外
基础数组为 null
。
注解
此成员是显式接口成员的实现。 它只能在 ArraySegment<T> 实例被强制转换为 IList<T> 接口时使用。