ImmutableList<T>.IList<T>.Item[Int32] Propriedade
Definição
Obtém ou define o valor no índice especificado.Gets or sets the value at the specified index.
property T System::Collections::Generic::IList<T>::Item[int] { T get(int index); void set(int index, T value); };
T System.Collections.Generic.IList<T>.Item[int index] { get; set; }
member this.System.Collections.Generic.IList<T>.Item(int) : 'T with get, set
Property Item(index As Integer) As T Implements IList(Of T).Item
Parâmetros
- index
- Int32
O índice com base em zero do item a ser acessado.The zero-based index of the item to access.
Valor da propriedade
- T
Valor armazenado no índice especificado.Value stored in the specified index.
Implementações
Exceções
Gerado de getter quando index for negativo ou não for menor que Count.Thrown from getter when index is negative or not less than Count.
Sempre lançado de setter.Always thrown from the setter.