cs11dotnet7/vs4win/Chapter06/Ch06Ex02Inheritance/Program.cs

10 lines
322 B
C#
Raw Normal View History

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