Tuple is a data structure which gives you the easiest way to represent a data set which has multiple values that may/may not be related to each other.
Item7 Property is used to get the seventh element of the given tuple. It is not applicable on 1-Tuple, 2-Tuple, 3-Tuple, 4-Tuple, 5-Tuple, and 6-tuple but applicable on all other remaining tuples.
Syntax:
public T7 Item7 { get; }
Here,
T7 is the value of the current Tuple<> object's seventh component. This Tuple<> can be 7-tuple, or 8-tuple.
Example: In the below code, you can see that we are accessing the seventh element of each tuple.
Output:
Student-7 Position.: 1
Student-8 Position: 2
Note: You can also get the type of the Seventh component of the tuple by using
GetType() method or by using
Type.GetGenericArguments method.
Example: