ArraySegment<T>.IReadOnlyList<T>.Item[Int32] Propiedad

Definición

Obtiene el elemento en el índice especificado del segmento de la matriz.

property T System::Collections::Generic::IReadOnlyList<T>::Item[int] { T get(int index); };
T System.Collections.Generic.IReadOnlyList<T>.Item[int index] { get; }
member this.System.Collections.Generic.IReadOnlyList<T>.Item(int) : 'T
 ReadOnly Property Item(index As Integer) As T Implements IReadOnlyList(Of T).Item

Parámetros

index
Int32

Índice de base cero del elemento que se va a obtener.

Valor de propiedad

T

Elemento en el índice especificado.

Implementaciones

Excepciones

index no es un índice válido para ArraySegment<T>.

La matriz subyacente es null.

La propiedad se establece.

Comentarios

Este miembro es una implementación explícita de un miembro de interfaz. Solo se puede utilizar cuando la instancia de ArraySegment<T> se convierte en una interfaz IReadOnlyList<T>.

Se aplica a