Tuple<T1,T2> Constructor(T1,T2)
See Also 
SourceCode Namespace > Tuple<T1,T2> Class > Tuple<T1,T2> Constructor : Tuple<T1,T2> Constructor(T1,T2)



item1
item2

Glossary Item Box

Syntax

Visual Basic (Declaration)  
Public Function New( _
   ByVal item1 As T1, _
   ByVal item2 As T2 _
)
Visual Basic (Usage) Copy Code
Dim item1 As T1
Dim item2 As T2
 
Dim instance As New Tuple(Of T1,T2)(item1, item2)
C#  
public Tuple<T1,T2>( 
   T1 item1,
   T2 item2
)
C++/CLI  
public:
Tuple<T1,T2>( 
   T1^ item1,
   T2^ item2
)

Parameters

item1
item2

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