Open Close

The Open-Closed Principle in C#: The O of SOLID
The Open-Closed Principle …

The Open-Closed Principle (OCP) is one of the five principles of object-oriented programming and design known as SOLID. It states that software entities (classes, modules, functions, etc.) should be open for extension but closed for modification. In this blog post, we will take a look into the …