LINQ C# Tutorial

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.ComponentModel;
    class AnonymousTypes
    {
        static void Main()
        {
            var jon = new { Name = "Jon", Age = 31 };
            var tom = new { Name = "Tom", Age = 4 };
            Console.WriteLine("{0} is {1}", jon.Name, jon.Age);
            Console.WriteLine("{0} is {1}", tom.Name, tom.Age);
        }
    }