cs11dotnet7/vscode/Chapter06/Ch06Ex02Inheritance/Square.cs
2022-02-27 19:08:52 +00:00

26 lines
363 B
C#

namespace Packt.Shared;
public class Square : Rectangle
{
public Square() { }
public Square(double width) : base(height: width, width: width) { }
public override double Height
{
set
{
height = value;
width = value;
}
}
public override double Width
{
set
{
height = value;
width = value;
}
}
}