This documentation is archived and is not being maintained.

Tuple<T1> Constructor

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 method to instantiate a 1-tuple object without having to explicitly specify the type of its component. The following example uses the Create 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.

.NET Framework

Supported in: 4

.NET Framework Client Profile

Supported in: 4

Portable Class Library

Supported in: Portable Class Library

Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Show: