using System;

class Program
{
    static void Main(string[] args)
    {
        dynamic t = new Action(() => {
                typeof(Console).GetMethod(\"WriteLine\", new Type[] { typeof(string) }).
                    Invoke(null, new object[] { \"Hello World!!\" });
            });
        t();

        Console.ReadLine();
    }
}



더 좋은 아이디어가 안떠올라요