TanvirArjel / SolidPrinciples

Contains clear examples and explanations of SOLID design principles.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

SOLID Principles

SOLID principles are the software design principles that enable us to manage most of the software design problems. Robert C. Martin compiled these principles in the 1990s and SOLID acronym was first introduced by Michael Feathers.

SOLID is an acronym where

  1. S stands for Single Responsibility Principle (SRP)

  2. O stands for Open closed Principle (OCP)

  3. L stands for Liskov substitution Principle (LSP)

  4. I stands for Interface Segregation Principle (ISP)

  5. D stands for Dependency Inversion Principle (DIP)

Please click on the hyperlink of the each principle to know details about that principle.

⭐ Giving a star

If you find this repository useful, please don't forget to encouraging me to do more such stuffs by giving a star to this repository. Thank you.

About

Contains clear examples and explanations of SOLID design principles.

License:MIT License


Languages

Language:C# 98.1%Language:Smalltalk 1.9%