DotNetShoutout - Stories tagged with Builder
3
Shouts

To repeat or not to repeat yourself?

published 693 days, 16 hours, 40 minutes ago posted by slo2olsslo2ols 697 days, 8 hours, 41 minutes ago
Friday, July 01, 2011 9:04:59 PM GMT Tuesday, June 28, 2011 5:03:25 AM GMT
What do modern developers if they are forced to write repeated code? Of course, they follow DRY principle and try to write generic code that covers as much as possible cases and can easily be extended to the rest. But sometimes such a change is complex, inefficient, or simply impossible. Here template engines come into play that allow the developer to set the rules and get your service code. I propose to try to take the advantages of both these approaches. (more)
category: How To | clicked: 4 | comment | | source: osmirnov.net
tags: Repository, T4, Builder, Patterns, singleton, dry, snippets, Fluent Interface
6
Shouts

A Fluent Builder in C# | Stefano Ricciardi

published 1135 days, 2 hours, 32 minutes ago posted by http://sterioma.pip.verisignlabs.com/http://sterioma.pip.verisignlabs.com/ 1136 days, 17 hours, 14 minutes ago
Friday, April 16, 2010 11:12:10 AM GMT Wednesday, April 14, 2010 8:30:16 PM GMT
A simple builder with a fluent interface to help creating objects expecting many parameters in the constructor. (more)
category: How To | clicked: 6 | comment | | source: stefanoricciardi.com
tags: C#, Builder, Patterns, Fluent Interface