Tuple<T1,T2,T3,T4,T5,T6>.ITuple.Item[Int32] Özellik
Tanım
Belirtilen öğenin değerini alır Tuple
.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
Parametreler
- index
- Int32
Belirtilen Tuple
öğenin dizini.The index of the specified Tuple
element. index
0 ile 5 arasında değişebilir.index
can range from 0 to 5.
Özellik Değeri
Tuple
Öğenin belirtilen konumdaki değeri.The value of the Tuple
element at the specified position.
Uygulamalar
Özel durumlar
index
0 ' dan küçük veya 5 ' ten büyük.index
is less than 0 or greater than 5.
Açıklamalar
Tuple<T1,T2,T3,T4,T5,T6>.ITuple.Item[]Özelliği açık bir arabirim uygulamasıdır.The Tuple<T1,T2,T3,T4,T5,T6>.ITuple.Item[] property is an explicit interface implementation. Bunu çağırmak için Tuple<T1,T2,T3,T4,T5,T6> nesneyi bir arabirim nesnesine atamalısınız veya dönüştürmeniz gerekir ITuple .To call it, you must cast or convert the Tuple<T1,T2,T3,T4,T5,T6> object to an ITuple interface object.