static void Main(string[] args)
 {
     Adapter.Run();
     Observer.Run();
     ChainOfResponsibilityExample.Run();
     Console.ReadLine();
 }
 public static void Main(string[] args)
 {
     AbstractFactoryExample.Introduce();
     BuilderExample.Introduce();
     ChainOfResponsibilityExample.Introduce();
     StateExample.Introduce();
     VisitorExample.Introduce();
 }
Exemple #3
0
        private static void Main(string[] args)
        {
            AbstractFactoryExample.Run();

            AdapterExample.Run();

            ChainOfResponsibilityExample.Run();

            FlyWeightExample.Run();

            SingletonExample.Run();

            MementoExample.Run();

            Console.ReadLine();
        }