Understanding Simple Factory Design Pattern implementation with real world example View Article Information Posted Date: 9. September 2014 Author: Anil Sharma Categories: Design Patterns, C Sharp Keywords: Factory Design Pattern, Design Pattern implementation, Understanding Design Pattern Simple Factory Design Pattern doesn’t belong to the Gangs of Four. A Simple Factory Pattern is one of that returns an instance of one of several possible classes, depending on the data provided to it. This implies that the classes it returns have same parent class and methods, but each of them perform task differently for different kind of data. [Continue Reading]