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.

Tuple<T1> Constructor (T1)

 

Initializes a new instance of the Tuple<T1> class.

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

public:
Tuple(
	T1 item1
)

Parameters

item1
Type: T1

The value of the tuple's only component.

You can also use the static Tuple::Create<T1> method to instantiate a 1-tuple object without having to explicitly specify the type of its component. The following example uses the Create<T1> method to instantiate a 1-tuple whose component is of type Int32.

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

This is equivalent to the following call to the Tuple<T1> class constructor.

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:
© 2017 Microsoft