By tag: AbstractFactory
0
kicks
Design Patterns - Abstract Factory Pattern
Time to continue from yesterday ’s Factory Method Pattern by exploring the Abstract Factory Pattern. The definition and then some code to make everything clear. “Provide an interface for creating families of related or dependent objects without specifying their concrete classes.
0
kicks
An Abstract Factory using the app.config and Reflection
An Abstract Factory is a method that allows us to dynamically load a set of custom functionally that conforms to a well defined interface, usually at runtime.
0
kicks
The GOF Abstract Factory Design Pattern In C#
The abstract factory is a GOF (Gang of Four) creational pattern where the intent is to "...provide an interface for creating families of related or dependent objects without specifying their concrete classes".