ValueTuple<T1,T2,T3,T4,T5>(T1, T2, T3, T4, T5) Constructor
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Initializes a new ValueTuple<T1,T2,T3,T4,T5> instance.
public:
ValueTuple(T1 item1, T2 item2, T3 item3, T4 item4, T5 item5);
public ValueTuple (T1 item1, T2 item2, T3 item3, T4 item4, T5 item5);
new ValueTuple<'T1, 'T2, 'T3, 'T4, 'T5> : 'T1 * 'T2 * 'T3 * 'T4 * 'T5 -> ValueTuple<'T1, 'T2, 'T3, 'T4, 'T5>
Public Sub New (item1 As T1, item2 As T2, item3 As T3, item4 As T4, item5 As T5)
Parameters
- item1
- T1
The value tuple's first element.
- item2
- T2
The value tuple's second element.
- item3
- T3
The value tuple's third element.
- item4
- T4
The value tuple's fourth element.
- item5
- T5
The value tuple's fifth element.
Applies to
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.