Class Coupling
Tight Coupling- Suppose we have 2 classes A and B and other class C, D, E are tightly coupled with A and B. In this if we change some code in A, B then...
Sr. Software Developer
CSharp / Object Oriented Principle
by Sagar Jaybhay · Published April 20, 2019 · Last modified December 29, 2019
Tight Coupling- Suppose we have 2 classes A and B and other class C, D, E are tightly coupled with A and B. In this if we change some code in A, B then...
CSharp / Object Oriented Principle
by Sagar Jaybhay · Published April 20, 2019 · Last modified December 29, 2019
Class is a building block of software application. Every class responsible for particular behavior of an application. The real application consists of at least 3 layers. Presentation Layer – UI Business Layer- Domain Logic...