using System.Collections.Generic;
public static void Main()
Tuple<string, string, string> t = GetNames();
Console.WriteLine("Received names are {0}, {1}, {2}", t.Item1, t.Item2, t.Item3);
private static Tuple<string, string, string> GetNames()
Tuple<string, string, string> t = Tuple.Create("Amar", "Akbar", "Anthony");