Skip to content

Instantly share code, notes, and snippets.

@shahriarhossain
Created August 30, 2016 12:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shahriarhossain/d87c0c4beb11489496a848768b9c3f7e to your computer and use it in GitHub Desktop.
Save shahriarhossain/d87c0c4beb11489496a848768b9c3f7e to your computer and use it in GitHub Desktop.
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