public static Tuple<int, int, int, int, int, int, int, Tuple<Tuple<int, int>>> OldWay_TupleCreation() | |
{ | |
Tuple<int, int> twoTuple = new Tuple<int, int>(9, 10); | |
var tempTumple = Tuple.Create(1, 2, 3, 4, 5, 6, 7, twoTuple); | |
return tempTumple; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment