ArraySegment<T>.IList<T>.IndexOf(T) Método
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Determina o índice de um item específico no segmento de matriz.
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
Parâmetros
- item
- T
O objeto a localizar no segmento de matriz.
Retornos
O índice de item
se encontrado na lista; caso contrário, -1.
Implementações
Exceções
A matriz subjacente é null
.
Comentários
Este membro é uma implementação do membro de interface explícita. Ele só pode ser usado quando a instância de ArraySegment<T> é convertida em uma interface de IList<T>.