cs11dotnet7/vscode/Chapter06/Ch06Ex02Inheritance/Square.cs

26 lines
363 B
C#
Raw Normal View History

2022-02-27 20:08:52 +01:00
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;
}
}
}