Page 1 of 1

Which of the following is the correct way of declaring a tuple?

Posted: Wed Jul 13, 2022 7:53 pm
by answerhappygod
a) tuple tp<type1, type2, type3>;
b) tuple tp = new tuple<type1, type2, type3>;
c) tuple <type1, type2, type3> tp;
d) Tuple <type1, type2, type3> tp;