mirror of
https://github.com/markjprice/cs11dotnet7.git
synced 2025-12-06 05:32:03 +01:00
20 lines
282 B
C#
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;
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|