How to create 6-ValueTuple in C#?
In C#, a 6-ValueTuple or sextuple is a value type tuple which contains six elements. You can create a 6-ValueTuple using two different ways: Using ValueTuple <T1, T2, T3, T4, T5, T6>(T1, T2, T3, T4, T5, T6) Constructor Using Create <T1, T2, T3, T4, T5, T6>(T1, T2, T3, T4, T5, T6) Method