Example #1
0
        static void Main(string[] args)
        {
            Rectangle d = new Rectangle();

            d.ReadInfo();
            d.PrintInfo();
        }
Example #2
0
        static void Main(string[] args)
        {
            //Rectangle x = new Rectangle(2, 3);
            Rectangle y = new Rectangle();

            y.ReadInfo();

            //x.PrintInfo();
            y.PrintInfo();


        }