mirror of
https://github.com/markjprice/cs11dotnet7.git
synced 2025-12-06 05:32:03 +01:00
16 lines
224 B
C#
16 lines
224 B
C#
namespace Packt.Shared;
|
|
|
|
public class Rectangle : Shape
|
|
{
|
|
public override double Area
|
|
{
|
|
get
|
|
{
|
|
return Height * Width;
|
|
}
|
|
}
|
|
|
|
public double Height { get; set; }
|
|
public double Width { get; set; }
|
|
}
|