// C# program to illustrate the use
// of the GetHashCode method
using System;
class GFG {
// Main Method
static public void Main()
{
// Creating different Tuples
// using Create Method
var t1 = Tuple.Create(64, 76, 78, Tuple.Create(12, 34, 56, 78));
var t2 = Tuple.Create(78, 34, 86, Tuple.Create(23, 56));
var t3 = Tuple.Create(34, 78, Tuple.Create(12, 34, 56, 78));
var t4 = Tuple.Create(12, 34, 56, 34, 56, 65, 78,
Tuple.Create(24, 45, 67, 78, 89, 88));
// Get the hash code of the Tuples
// Using GetHashCode method
Console.WriteLine("HashCode for t1: " + t1.GetHashCode());
Console.WriteLine("HashCode for t2: " + t2.GetHashCode());
Console.WriteLine("HashCode for t3: " + t3.GetHashCode());
Console.WriteLine("HashCode for t4: " + t4.GetHashCode());
}
}