Tuple<T1,T2,T3,T4,T5,T6>.ITuple.Item[Int32] Propiedad
Definición
Obtiene el valor del elemento Tuple
especificado.Gets the value of the specified Tuple
element.
property System::Object ^ System::Runtime::CompilerServices::ITuple::Item[int] { System::Object ^ get(int index); };
object? System.Runtime.CompilerServices.ITuple.Item[int index] { get; }
object System.Runtime.CompilerServices.ITuple.Item[int index] { get; }
member this.System.Runtime.CompilerServices.ITuple.Item(int) : obj
ReadOnly Property Item(index As Integer) As Object Implements ITuple.Item
Parámetros
- index
- Int32
Índice del elemento Tuple
especificado.The index of the specified Tuple
element. index
puede oscilar entre 0 y 5.index
can range from 0 to 5.
Valor de propiedad
El valor del elemento Tuple
en la posición especificada.The value of the Tuple
element at the specified position.
Implementaciones
Excepciones
index
es menor que 0 o mayor que 5.index
is less than 0 or greater than 5.
Comentarios
La Tuple<T1,T2,T3,T4,T5,T6>.ITuple.Item[] propiedad es una implementación de interfaz explícita.The Tuple<T1,T2,T3,T4,T5,T6>.ITuple.Item[] property is an explicit interface implementation. Para llamarlo, debe convertir el Tuple<T1,T2,T3,T4,T5,T6> objeto en un ITuple objeto de interfaz.To call it, you must cast or convert the Tuple<T1,T2,T3,T4,T5,T6> object to an ITuple interface object.