cs11dotnet7/vscode/Chapter06/Ch06Ex02Inheritance/Rectangle.cs
2022-02-27 19:08:52 +00:00

20 lines
282 B
C#

namespace Packt.Shared;
public class Rectangle : Shape
{
public Rectangle() { }
public Rectangle(double height, double width)
{
this.height = height;
this.width = width;
}
public override double Area
{
get
{
return height * width;
}
}
}