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

 

Returns a string that represents the value of this Tuple<T1, T2, T3> 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> object.

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

The following example illustrates the ToString method.

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: