Abstract factory pattern [closed]
Good example for Abstract factory pattern in C#? What are the advantages of the Abstract factory pattern in C#? How to use C# generics with the Abstract factory pattern? How to unit test with the Abstract factory pattern? First of all, I would suggest you to read about the Abstract Factory pattern, for example here . Now I will try to explain why you would use this pattern. Normally, if you use the Factory pattern, you will create objects in a Factory. The problem arises when you have multiple implementation of a given class (or classes). Now, those multiple implementations are grouped. You