Tuple<T1, T2, T3, T4>::ToString Method ()

 

Returns a string that represents the value of this Tuple<T1, T2, T3, T4> instance.

Namespace:   System
Assembly:  mscorlib (in mscorlib.dll)

public:
virtual String^ ToString() override

Return Value

Type: System::String^

The string representation of this Tuple<T1, T2, T3, T4> object.

The string returned by this method takes the form (Item1, Item2, Item3, Item4), where Item1, Item2, Item3, and Item4 represent the values of the Item1, Item2, Item3, and Item4 properties, respectively. If any of the property values is null, it is represented as String::Empty.

The following example illustrates the ToString method. It displays the components of an array of 4-tuple objects that contain the name of a city, a month of the year, and the high and low average temperature for that month.

No code example is currently available or this language may not be supported.

Universal Windows Platform
Available since 8
.NET Framework
Available since 4.0
Portable Class Library
Supported in: portable .NET platforms
Silverlight
Available since 4.0
Windows Phone Silverlight
Available since 8.0
Windows Phone
Available since 8.1
Return to top
Show: