Tuple<T1,T2,T3,T4,T5,T6>.ITuple.Item[Int32] 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得指定的 Tuple
項目值。
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
參數
- index
- Int32
指定的 Tuple
項目索引。
index
的範圍可以從 0 到 5。
屬性值
位在指定位置的 Tuple
項目值。
實作
例外狀況
index
小於 0 或大於 5。
備註
屬性 Tuple<T1,T2,T3,T4,T5,T6>.ITuple.Item[] 是明確的介面實作。 若要呼叫它,您必須轉換物件或將 Tuple<T1,T2,T3,T4,T5,T6> 物件 ITuple 轉換成介面物件。