Click or drag to resize
Tuple2CreateT1, T2, T3, T4 Method (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.

Namespace: System
Assembly: CSharpXamlForHtml5 (in CSharpXamlForHtml5.dll) Version: 1.0.0.0
Syntax
C#
public static Tuple2<T1, T2, T3, T4> Create<T1, T2, T3, T4>(
	T1 item1,
	T2 second,
	T3 third,
	T4 fourth
)

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
fourth
Type: T4
Fourth element of the tuple

Type Parameters

T1

[Missing <typeparam name="T1"/> documentation for "M:System.Tuple2.Create``4(``0,``1,``2,``3)"]

T2

[Missing <typeparam name="T2"/> documentation for "M:System.Tuple2.Create``4(``0,``1,``2,``3)"]

T3

[Missing <typeparam name="T3"/> documentation for "M:System.Tuple2.Create``4(``0,``1,``2,``3)"]

T4

[Missing <typeparam name="T4"/> documentation for "M:System.Tuple2.Create``4(``0,``1,``2,``3)"]

Return Value

Type: Tuple2T1, T2, T3, T4
A newly created tuple
See Also