TupleComparer<T1,T2,T3> Constructor
See Also 
SourceCode Namespace > TupleComparer<T1,T2,T3> Class : TupleComparer<T1,T2,T3> Constructor



item1
item2
item3

Glossary Item Box

Syntax

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

Parameters

item1
item2
item3

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