Ejemplo n.º 1
0
        static void Main(string[] args)
        {
            IDoThings myStuff = new DoStuff.DoHickey();
            myStuff.DoNothing();
            myStuff.DoSomething(4);
            myStuff.DoSomethingElse("This is a string");

            myStuff = new DoStuff.DoDickey();
            myStuff.DoNothing();
            myStuff.DoSomething(4);
            myStuff.DoSomethingElse("This is a string");
        }
Ejemplo n.º 2
0
        static void Main(string[] args)
        {
            IDoThings myStuff = new DoStuff.DoHickey();

            myStuff.DoNothing();
            myStuff.DoSomething(4);
            myStuff.DoSomethingElse("This is a string");

            myStuff = new DoStuff.DoDickey();
            myStuff.DoNothing();
            myStuff.DoSomething(4);
            myStuff.DoSomethingElse("This is a string");
        }