如何在 C# 中调用方法?GetArea & GetPerimeter 是我需要调用的方法。
这是我正在处理的代码:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace MyRectangle
class Rectangle
{
// Set private variables
private int _height=0;
private int _width=0;
// Accessors
public int Height{
set { _height = 6; }
get { return _height;}
}
public int Width {
set { _width =8; }
get { return _width;}
}
//Public
public int GetArea()
{
return (_width * _height);
}
public int GetPerimeter()
{
return ((2 * _width) + (2 * _height));
}
}
Console.Write("Height is " + Height);
Console.Write("Width is " + Width);
Console.Write.GetArea()
Console.Write.GetPerimeter()
}
控制台是显示输出以进行调试的地方。我不确定在哪里调用这些方法。
谢谢!