TupleExtensions::ToValueTuple<T1, T2, T3, T4, T5> Method (Tuple<T1, T2, T3, T4, T5>^)

 

Converts an instance of the Tuple class to an instance of the ValueTuple structure.

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

public:
generic<typename T1, typename T2, typename T3, typename T4, typename T5>
[ExtensionAttribute]
static ValueTuple<T1, T2, T3, T4, T5> ToValueTuple(
	Tuple<T1, T2, T3, T4, T5>^ value
)

Parameters

value
Type: System::Tuple<T1, T2, T3, T4, T5>^

The tuple object to convert to a value tuple

Return Value

Type: System::ValueTuple<T1, T2, T3, T4, T5>

The converted value tuple instance.

Type Parameters

T1

The type of the first element.

T2

The type of the second element.

T3

The type of the third element.

T4

The type of the fourth element.

T5

The type of the fifth element.

.NET Framework
Available since 4.7
Return to top
Show: