Finally there is a way on how to use tuple as it ought to be. In C# 4.0, you can do the following dynamic GetTuple()
{
return new { FirstName : “John”, LastName : “Adams” };
}
dynamic myTuple = GetTuple();
Console.WriteLine (myTuple.FirstName);
Read More