Example #1
0
 static void Main(string[] args)
 {
     Rectangle r = new Rectangle();
     r.AcceptDetails();
     r.GetArea();
     r.display();
 }
Example #2
0
        static void Main(string[] args)
        {
            Rectangle r = new Rectangle();

            r.AcceptDetails();
            r.Display();
            Console.ReadLine();
        }