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();
        }
        static void Main(string[] args)
        {
            ShapeMaker sm = new ShapeMaker();

            sm.drawCircle();
            sm.drawRectangle();
            sm.drawSquare();

            Console.ReadLine();
        }
Exemplo n.º 4
0
        static void Main(string[] args)
        {
            var shapeMaker = new ShapeMaker();

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

            Console.ReadKey();
        }
Exemplo n.º 5
0
        public static void Main(String[] args)
        {
            ShapeMaker shapeMaker = new ShapeMaker();

            shapeMaker.drawCircle();
            shapeMaker.drawRectangle();
            shapeMaker.drawSquare();

            Console.ReadKey();
        }