Exemplo n.º 1
0
    static void Main(string[] args)
    {
        Thingy thingy = new Thingy();
        Widget widget = new Widget();

        thingy.Action();
        widget.Action();
        Console.Out.WriteLine("Press any key to quit.");
        Console.ReadKey();
    }