Пример #1
0
        static void Main(string[] args)
        {
            Shape newShape = new Triangle(new RedColor());

            newShape.ApplyColor();

            newShape = new Pentagon(new GreenColor());
            newShape.ApplyColor();
        }