cs11dotnet7/vscode/Chapter06/Ch06Ex02Inheritance/Rectangle.cs

20 lines
282 B
C#
Raw Normal View History

2022-02-27 20:08:52 +01:00
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;
}
}
}