SOLID Principles: Liskov Substitution Principle
Liskov Substitution Principle, or LSP, is actually a very simple concept to understand in a strongly typed language. In languages like C#, or VB.NET, LSP often gets taken for granted, but I’ve seen cases where even in strongly typed languages you can violate LSP.
Simply put, LSP means that for a given base class, you should be able to substitute derived classes in it’s place, and the behavior or the expectation of that behavior should not change. Take for example a Shape:
The point of this class is to define something which has the ability to give us it’s area back. Something like a Square
or a Circle
would have the means to give us this information.
However, something like a Line
would not be able to give us it’s area, because it doesn’t have an area. In fact, it’s not even a Shape to begin with. It seems odd that I would use this as an example, but the simplicity of the example shows exactly how LSP gets violated in practice. All too often I’ll see code where a class is deriving from another class, even though it’s shouldn’t be. At the core of the issue is usually that it was never meant to be the thing it was deriving from in the first place.
A full running example of utilizing LSP can be found on this video from dime casts.

Great post. As a learner its good start to add skills. Thanks Joseph for this post