The following are two ways to instantiate a tuple:
Tuple<String, int> t = new Tuple<String, int> ("Hellow", 2);
Tuple<int, int, int> t = Tuple.Create<int, int, int> (2, 4, 5);