Skip to content

Instantly share code, notes, and snippets.

@dimitris-papadimitriou-chr
Last active July 10, 2020 03:35
Show Gist options
  • Select an option

  • Save dimitris-papadimitriou-chr/f43be540dbfc3d17fd37da710f143e33 to your computer and use it in GitHub Desktop.

Select an option

Save dimitris-papadimitriou-chr/f43be540dbfc3d17fd37da710f143e33 to your computer and use it in GitHub Desktop.
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