DataTableMappingCollection.IList.Item[Int32] Propriedade
Definição
Obtém ou define um item da coleção em um índice especificado.Gets or sets an item from the collection at a specified index.
property System::Object ^ System::Collections::IList::Item[int] { System::Object ^ get(int index); void set(int index, System::Object ^ value); };
object? System.Collections.IList.Item[int index] { get; set; }
object System.Collections.IList.Item[int index] { get; set; }
member this.System.Collections.IList.Item(int) : obj with get, set
Property Item(index As Integer) As Object Implements IList.Item
Parâmetros
- index
- Int32
O índice com base em zero do item a ser obtido ou definido.The zero-based index of the item to get or set.
Valor da propriedade
O elemento no índice especificado.The element at the specified index.
Implementações
Comentários
Este membro é uma implementação do membro de interface explícita.This member is an explicit interface member implementation. Ele só pode ser usado quando a instância de DataTableMappingCollection é convertida em uma interface de IList.It can be used only when the DataTableMappingCollection instance is cast to an IList interface.
Para obter mais informações, consulte IList.Item[].For more information, see IList.Item[].