cs11dotnet7/vscode/Chapter09/Ch09Ex02SerializingShapes/Rectangle.cs
2022-03-04 08:34:29 +00:00

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; }
}