Exemplo n.º 1
0
        static void Main(string[] args)
        {
            ShapeMaker sm = new ShapeMaker();

            sm.DrawCircle();
            sm.DrawSquare();
        }
Exemplo n.º 2
0
        static void Main(string[] args)
        {
            ShapeMaker shapeMaker = new ShapeMaker();

            shapeMaker.DrawCircle();
            shapeMaker.DrawRectangle();
            shapeMaker.DrawSquare();
        }
Exemplo n.º 3
0
        static void Main(string[] args)
        {
            var shapeMaker = new ShapeMaker();

            shapeMaker.DrawCircle();
            shapeMaker.DrawRectangle();
            shapeMaker.DrawSquare();

            Console.ReadKey();
        }