Tuple(Of T1, T2, T3, T4, T5, T6, T7).ToString Method
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Returns a string that represents the value of this Tuple(Of T1, T2, T3, T4, T5, T6, T7) instance.
Assembly: mscorlib (in mscorlib.dll)
Return Value
Type: System.StringThe string representation of this Tuple(Of T1, T2, T3, T4, T5, T6, T7) object.
The string returned by this method takes the form (Item1, Item2, Item3, Item4, Item5, Item6, Item7), where Item1, Item2, Item3, Item4, Item5, Item6, and Item7 represent the values of the Item1, Item2, Item3, Item4, Item5, Item6, and Item7 properties, respectively. If any of the property values is Nothing, it is represented as String.Empty.
The following example defines a Tuple(Of T1, T2, T3, T4, T5, T6, T7) object that contains population data for New York City for each census from 1950 through 2000. The components of the sextuple are then displayed by a call to the ToString method.