Tuple<T1,T2,T3,T4,T5,T6,T7,TRest>.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(表示 Item1
)到 Tuple
中的元素数减去一之间。
属性值
指定位置 Tuple
元素的值。
实现
例外
注解
该 Tuple<T1,T2,T3,T4,T5,T6,T7,TRest>.ITuple.Item[] 属性是显式接口实现。 若要调用该对象,必须强制转换或将对象转换为Tuple<T1,T2,T3,T4,T5,T6,T7,TRest>ITuple接口对象。