Tuple.Create<T1> Method (T1)

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

Creates a new 1-tuple, or singleton.

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

Syntax

'Declaration
Public Shared Function Create(Of T1) ( _
    item1 As T1 _
) As Tuple(Of T1)
public static Tuple<T1> Create<T1>(
    T1 item1
)

Type Parameters

  • T1
    The type of the only component of the tuple.

Parameters

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

Return Value

Type: System.Tuple<T1>
A tuple whose value is (item1).

Remarks

Create is a helper method that you can call 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 code 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.