ValueTuple<T1,T2,T3,T4,T5,T6,T7,TRest>.Rest 字段

定义

获取当前 ValueTuple<T1,T2,T3,T4,T5,T6,T7,TRest> 实例的剩余元素。Gets the current ValueTuple<T1,T2,T3,T4,T5,T6,T7,TRest> instance's remaining elements.

public: TRest Rest;
public TRest Rest;
val mutable Rest : 'Rest
Public Rest As TRest 

字段值

TRest

注解

Rest 字段返回一个嵌套值元组,该元组允许访问元组的第八个元素。The Rest field returns a nested value tuple that allows access to the eighth though n th elements of the tuple. 根据元组中元素的总数,可通过属性从嵌套值元组检索第8个到第十四个组件的值 Item1 Item7Depending on the total number of elements in the tuple, the values of the eighth through fourteenth components can be retrieved from the nested value tuple's Item1 through Item7 properties. 然后,您可以使用 Rest 嵌套对象的属性 ValueTuple<T1,T2,T3,T4,T5,T6,T7,TRest> 来检索下一层嵌套的值元组。You can then use the Rest property of a nested ValueTuple<T1,T2,T3,T4,T5,T6,T7,TRest> object to retrieve the value tuple at the next level of nesting.

适用于