Design Patterns - The Builder Pattern

added by dan_swain
8/13/2011 5:15:13 AM

175 Views

A quick Builder Pattern example in C# for .Net developers.


1 comments

vijayst
8/14/2011 8:34:46 AM
Builder pattern looks interesting. I am curious to know why such a pattern should be used. If you are looking for plug-and-play components, a dependency injection pattern should be useful? And if you want to create an object, a factory pattern should be useful. How is a builder pattern better than the factory pattern or the dependency injection pattern?