-
-
Save dimitris-papadimitriou-chr/f43be540dbfc3d17fd37da710f143e33 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| abstract class Shape { } | |
| class Rectangle : Shape | |
| { | |
| public int Width { get; set; } | |
| public int Height { get; set; } | |
| } | |
| class Circle : Shape | |
| { | |
| public int Radius { get; set; } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment