T1
Create<T1>(T1) Method
See Also 
SourceCode Namespace > Tuple Class > Create Method : Create<T1>(T1) Method



item1

Glossary Item Box

Syntax

Visual Basic (Declaration)  
Public Overloads Shared Function Create(Of T1)( _
   ByVal item1 As T1 _
) As Tuple(Of T1)
Visual Basic (Usage) Copy Code
Dim item1 As T1
Dim value As Tuple(Of T1)
 
value = Tuple.Create(Of T1)(item1)
C#  
public static Tuple<T1> Create<T1>( 
   T1 item1
)
C++/CLI  
public:
static Tuple<T1^>^ Creategeneric<typename T1>
( 
   T1^ item1
) 

Parameters

item1

Type Parameters

T1

Requirements

Target Platforms: 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

See Also