Tuple2CreateT1, T2, T3 Method (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.
Namespace: SystemAssembly: CSharpXamlForHtml5 (in CSharpXamlForHtml5.dll) Version: 1.0.0.0
Syntax public static Tuple2<T1, T2, T3> Create<T1, T2, T3>(
T1 item1,
T2 second,
T3 third
)
Parameters
- item1
- Type: T1
First element of the tuple - second
- Type: T2
Second element of the tuple - third
- Type: T3
Third element of the tuple
Type Parameters
- T1
[Missing <typeparam name="T1"/> documentation for "M:System.Tuple2.Create``3(``0,``1,``2)"]
- T2
[Missing <typeparam name="T2"/> documentation for "M:System.Tuple2.Create``3(``0,``1,``2)"]
- T3
[Missing <typeparam name="T3"/> documentation for "M:System.Tuple2.Create``3(``0,``1,``2)"]
Return Value
Type:
Tuple2T1,
T2,
T3A newly created tuple
See Also