Tuple<T1>.ITuple.Item[Int32] プロパティ

定義

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 である必要があります。

プロパティ値

Object

Tuple 要素の値。

実装

例外

index が 0 より小さいか、0 を超えています。

注釈

この Tuple<T1>.ITuple.Item[] プロパティは、明示的なインターフェイス実装です。 これを呼び出すには、オブジェクトをキャストするか、インターフェイス オブジェクトに変換 Tuple<T1> する ITuple 必要があります。

適用対象