Tuples can be compared based on their elements.
As an example, an enumerable whose elements are of type Tuple can be sorted based on comparisons operators defined on a specified element:
List<Tuple<int, string>> list = new List<Tuple<int, string>>();
list.Add(new Tuple<...