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

10 lines
322 B
C#

using Packt.Shared;
Rectangle r = new(height: 3, width: 4.5);
WriteLine($"Rectangle H: {r.Height}, W: {r.Width}, Area: {r.Area}");
Square s = new(5);
WriteLine($"Square H: {s.Height}, W: {s.Width}, Area: {s.Area}");
Circle c = new(radius: 2.5);
WriteLine($"Circle H: {c.Height}, W: {c.Width}, Area: {c.Area}");