Adapter Design Pattern in C#

Adapter Design Pattern :

Adapter is a structural design pattern that allows objects with incompatible interfaces to collaborate.

Analogy :

Imagine you have different electronic devices with various power plugs, and you want to connect them all to a single power outlet.

Instead of modifying the devices, you use plug adapters. These adapters act as intermediaries, allowing each device to connect to the outlet seamlessly.

Similarly, the Adapter Design Pattern lets incompatible classes work together by providing a wrapper (adapter) that bridges the gap between their interfaces.

When should we use it ?

Utilize the Adapter class when you need to incorporate an existing class into your code, but its interface doesn’t align with the rest of your system.

Advantages and Disadvantages By using adapter design pattern we fulfill S and O from SOLID Principles , although in some situations it can increase the complexity of code.

Enough talk, let’s see code in action.

How to implement Adapter in C#

Suppose we have some old code with in compatible interfaces. Adapter Design Pattern in C#

And now we have a new interface expected by the rest of the code Adapter Design Pattern in C#

Let’s make an adapter class that makes OldSystem compatible with INewSystem Adapter Design Pattern in C#

Let’s see now how can we utilise it. Adapter Design Pattern in C#

If you wanna learn more about design patterns here are three awesome resources

P.S: These are not promotional links at all, I personally found them helpful

This article was originally published at https://mwaseemzakir.substack.com/ on .

Whenever you're ready, there are 3 ways I can help you:

  1. Subscribe to my youtube channel : For in-depth tutorials, coding tips, and industry insights.
  2. Promote yourself to 9,000+ subscribers : By sponsoring this newsletter
  3. Patreon community : Get access to all of my blogs and articles at one place