Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

TupleExtensions::Deconstruct<T1, T2, T3> Method (Tuple<T1, T2, T3>^, T1%, T2%, T3%)

 

Deconstructs a tuple with 3 elements into separate variables.

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

public:
generic<typename T1, typename T2, typename T3>
[ExtensionAttribute]
static void Deconstruct(
	Tuple<T1, T2, T3>^ value,
	[OutAttribute] T1% item1,
	[OutAttribute] T2% item2,
	[OutAttribute] T3% item3
)

Parameters

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

The 3-element tuple to deconstruct into 3 separate variables.

item1
Type: T1%

The value of the first element.

item2
Type: T2%

The value of the second element.

item3
Type: T3%

The value of the third element.

Type Parameters

T1

The type of the first element.

T2

The type of the second element.

T3

The type of the third element.

This method is implemented primarily to support the tuple language features in C#.

.NET Framework
Available since 4.7
Return to top
Show:
© 2017 Microsoft