Abstract Factory Design Pattern Implementation in C#
Microsoft .NET Framework, ASP.NET, Visual C# (CSharp, C Sharp, C-Sharp) Developer Training, Visual Studio
| CSharp-Online.NET:Articles |
| C# Articles |
|
Abstract Factory Design Pattern Implementation in C# |
| edit |
This article—Abstract Factory Design Pattern Implementation in C#— by Ashish Jaiman explains how to implement the Abstract Factory design pattern in the C# language.
(Reference: E. Gamma et al., "Design Patterns: Elements of Reusable Object-Oriented Software", ISBN 0-201-63361-2, Addison Wesley, 1995.)
Abstract Factory Design Pattern Implementation in C#
Design patterns make it easier to reuse successful designs and architectures. Design patterns help you choose design alternatives that make a system reusable and avoid alternatives that compromise reusability. They help make a system independent of how its objects are created, composed, and represented. An abstract factory provides an interface for creating families of related objects without specifying their concrete classes.
See also
|

