ValueTuple::Create<T1, T2, T3, T4, T5> Method (T1, T2, T3, T4, T5)
Creates a new value tuple with 5 components (a quintuple).
Assembly: mscorlib (in mscorlib.dll)
public: generic<typename T1, typename T2, typename T3, typename T4, typename T5> static ValueTuple<T1, T2, T3, T4, T5> Create( T1 item1, T2 item2, T3 item3, T4 item4, T5 item5 )
Parameters
- item1
-
Type:
T1
The value of the value tuple's first component.
- item2
-
Type:
T2
The value of the value tuple's second component.
- item3
-
Type:
T3
The value of the value tuple's third component.
- item4
-
Type:
T4
The value of the value tuple's fourth component.
- item5
-
Type:
T5
The value of the value tuple's fifth component.
Type Parameters
- T1
The type of the value tuple's first component.
- T2
The type of the value tuple's second component.
- T3
The type of the value tuple's third component.
- T4
The type of the value tuple's fourth component.
- T5
The type of the value tuple's fifth component.
Create<T1, T2, T3, T4, T5> is a helper method that you can call to instantiate a 5-component value tuple without having to explicitly specify the types of its components.
.NET Framework
Available since 4.7
Available since 4.7
Show: