cs11dotnet7/vscode/Chapter09/Ch09Ex02SerializingShapes/Rectangle.cs

16 lines
224 B
C#
Raw Normal View History

2022-03-04 09:34:29 +01:00
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; }
}