예제 #1
0
            static void Main(string[] args)
            {
                RectangleTwo r = new RectangleTwo();

                r.AcceptDetails();
                r.Display();
                Console.ReadLine();
            }
예제 #2
0
 static private int Area(RectangleTwo rectangleTwo) => rectangleTwo.Width * rectangleTwo.Height;