Tuple<T1> Constructor

Microsoft Silverlight will reach end of support after October 2021. Learn more.

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

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

Syntax

'Declaration
Public Sub New ( _
    item1 As T1 _
)
public Tuple(
    T1 item1
)

Parameters

  • item1
    Type: T1
    The value of the tuple's only component.

Remarks

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.

Dim tuple1 = Tuple.Create(12)
var tuple1 = Tuple.Create(12);

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

Dim tuple1 = New Tuple(Of Integer)(12)
var tuple1 = new Tuple<int>(12);

Version Information

Silverlight

Supported in: 5, 4

Platforms

For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.

See Also

Reference