编辑代码

using System; //命名空间
namespace RectangleApplication 
{
    class Rectangle //声明类
    {
        // 成员变量
        double length;
        double width;
        public void Acceptdetails() //函数
        {
            length = 4.5;
            width = 3.5;
        }
        public double GetArea() //函数
        {
            return length * width;
        }
        public void Display() //函数
        {
            //输出
            Console.WriteLine("Length: {0}", length); 
            Console.WriteLine("Width: {0}", width);
            Console.WriteLine("Area: {0}", GetArea());
        }
    }

    class ExecutRectangle //包含Main()方法和实例化Rectangle(对象)
    {
        static void Main(string[] args) 
        {
            //列举对象
            Rectangle r = new Rectangle();
            r.Acceptdetails();
            r.Display();
            Console.ReadLine();
        }
    }
}