Click or drag to resize
Tuple2 Class
Utility class that simplifies cration of tuples by using method calls instead of constructor calls
Inheritance Hierarchy
SystemObject
  SystemTuple2

Namespace: System
Assembly: CSharpXamlForHtml5 (in CSharpXamlForHtml5.dll) Version: 1.0.0.0
Syntax
C#
public static class Tuple2
Methods
  NameDescription
Public methodStatic memberCreateT1, T2(T1, T2)
Creates a new tuple value with the specified elements. The method can be used without specifying the generic parameters, because C# compiler can usually infer the actual types.
Public methodStatic memberCreateT1, T2, T3(T1, T2, T3)
Creates a new tuple value with the specified elements. The method can be used without specifying the generic parameters, because C# compiler can usually infer the actual types.
Public methodStatic memberCreateT1, T2, T3, T4(T1, T2, T3, T4)
Creates a new tuple value with the specified elements. The method can be used without specifying the generic parameters, because C# compiler can usually infer the actual types.
Top
See Also