LINQ C# Tutorial

using System;
using System.Collections.Generic;
using System.ComponentModel;
    class MainClass
    {
        static void Main()
        {
            Action printReverse = delegate(string text)
                {
                    char[] chars = text.ToCharArray();
                    Array.Reverse(chars);
                    Console.WriteLine(new string(chars));
                };
            printReverse("Hello world");
        }
    }