Bridge_RivasLeonPaul.MainApp.Main C# (CSharp) Method

Main() static private method

static private Main ( ) : void
return void
        static void Main()
        {
            Abstraction ab = new RefinedAbstraction();
            // Set implementation and call 
            ab.Implementor = new ConcreteImplementorA();
            ab.Operation();
            // Change implemention and call 
            ab.Implementor = new ConcreteImplementorB();
            ab.Operation();
            // Wait for user 
            Console.Read();
        }
    }
MainApp