How to use the Abstract Factory design pattern in C#
Learn how to use the Abstract Factory .NET Design Pattern C# in order to help improve and enhance your code for greater testability.
Learn how to use the Abstract Factory .NET Design Pattern C# in order to help improve and enhance your code for greater testability.
This book discusses how to decompose complex software systems into modules that can be implemented relatively independently. The discussion first begins with fundamental problem in software design, managing complexity.
Factory Pattern creates objects, in this post we will implement the factory design pattern in a C# application. Using the Factory pattern, we develop an abstraction that isolates the logic for determining which type of class to create.
In a previous post, I discussed how we can use Configuration API in .net core console application to retrieve custom configuration settings from a Json… Read More »Using IHost .net core console applications