Tuples are created using generic types Tuple<T1>-Tuple<T1,T2,T3,T4,T5,T6,T7,T8>. Each of the types represents a tuple containing 1 to 8 elements. Elements can be of different types.
// tuple with 4 elements
var tuple = new Tuple<string, int, bool, MyClass>("foo", 123, t...