Create(T1) Method (T1)

Tuple.Create<T1> Method (T1)

[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]

Creates a new 1-tuple, or singleton.

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

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).

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.

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

Windows Phone OS

Supported in: 8.1, 8.0

Show:
© 2017 Microsoft