我想让某人在我的代码中输入长度和宽度的值,这是我到目前为止得到的:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApplication2
{
class Rectangle
{
double length;
double width;
double a;
static double Main(string[] args)
{
length = Console.Read();
width = Console.Read();
}
public void Acceptdetails()
{
}
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 ExecuteRectangle
{
public void Main()
{
Rectangle r = new Rectangle();
r.Display();
Console.ReadLine();
}
}
}
尝试使用两种Main
方法是错误的方法吗?这是我从http://www.tutorialspoint.com/csharp/csharp_basic_syntax.htm复制的代码,我正在尝试对其进行修改,以获得更多使用这种编程语言的经验。