Tuple<T1,T2,T3,T4>.ITuple.Item[Int32] Eigenschaft
Definition
Ruft den Wert des angegebenen Elements Tuple
ab.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; }
ReadOnly Property Item(index As Integer) As Object Implements ITuple.Item
Parameter
- index
- Int32
Der Index des angegebenen Elements Tuple
.The index of the specified Tuple
element. index
kann zwischen 0 und 3 liegen.index
can range from 0 to 3.
Eigenschaftswert
Der Wert des Tuple
-Elements an der angegebenen Position.The value of the Tuple
element at the specified position.
Implementiert
Ausnahmen
index
ist kleiner als 0 (null) oder größer als 3.index
is less than 0 or greater than 3.
Hinweise
Die Tuple<T1,T2,T3,T4>.ITuple.Item[Int32] -Eigenschaft ist eine explizite Schnittstellen Implementierung.The Tuple<T1,T2,T3,T4>.ITuple.Item[Int32] property is an explicit interface implementation. Um dies aufzurufen, müssen Sie das Tuple<T1,T2,T3,T4> Objekt in ein ITuple Schnittstellen Objekt umwandeln oder konvertieren.To call it, you must cast or convert the Tuple<T1,T2,T3,T4> object to an ITuple interface object.