Tuple<T1, T2, T3, T4, T5, T6>.Item1 Property
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Gets the value of the current Tuple<T1, T2, T3, T4, T5, T6> object's first component.
Assembly: mscorlib (in mscorlib.dll)
Property Value
Type: T1The value of the current Tuple<T1, T2, T3, T4, T5, T6> object's first component.
You can dynamically determine the type of the Item1 component in one of two ways:
By calling the GetType method on the value that is returned by the Item1 property.
By retrieving the Type object that represents the Tuple<T1, T2, T3, T4, T5, T6> object, and retrieving the first element from the array that is returned by its Type.GetGenericArguments method.
The following example defines an array of Tuple<T1, T2, T3, T4, T5, T6> objects whose components contain population data for three U.S. cities (New York, Chicago, and Los Angeles) from 1960 through 2000. It then displays a table that lists the data. To display the city name, it retrieves the value of the Item1 property for each Tuple<T1, T2, T3, T4, T5, T6> object.