SOILD Principle

What is Liskov Substitution Principle?

v The Liskov Substitution Principle (LSP) states that an object of a child class must be able to replace an object of the parent class without breaking the   application. v   All the base class methods must be applicable for the derived class.��…

What is Interface Segregation Principle?

v The Interface Segregation (ISP) states that a class should not be forced to implement interfaces that it does not use. v It is better to have multiple smaller interfaces than larger interfaces.

Coding Best Practices to Follow

Code best practices are guidelines and recommendations that help developers write high-quality, maintainable, and efficient code. They are derived from industry experience, software development principles, and common patterns. Here are some key code…

What is a solid principle in C#?

In software development, SOLID is an acronym that represents a set of principles for designing well-structured and maintainable object-oriented code. The SOLID principles help in achieving code that is easier to understand, test, and maintain. These…

Load More
That is All