Skip to content

Instantly share code, notes, and snippets.

@hazzik
Created March 26, 2014 20:32
Show Gist options
  • Select an option

  • Save hazzik/9792684 to your computer and use it in GitHub Desktop.

Select an option

Save hazzik/9792684 to your computer and use it in GitHub Desktop.
LSP.cs
public class Rectangle {
public Rectangle(decimal width, decimal height) {
Width = width;
Height = height;
}
public decimal Area() {
return Width * Height;
}
public decimal Width { get; private set; }
public decimal Height { get; private set; }
}
public class Square : Rectangle {
public Square(decimal side)
: base (side, side) {
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment