ImmutableList<T>.Item[Int32] Propriedade
Definição
Obtém o elemento no índice especificado da lista.Gets the element at the specified index of the list.
public:
property T default[int] { T get(int index); };
public T this[int index] { get; }
member this.Item(int) : 'T
Default Public ReadOnly Property Item(index As Integer) As T
Parâmetros
- index
- Int32
O índice do elemento a ser recuperado.The index of the element to retrieve.
Valor da propriedade
- T
O elemento no índice especificado.The element at the specified index.
Implementações
Exceções
Em uma operação get, index é negativo ou não menor que Count.In a get operation, index is negative or not less than Count.