Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have seen .net optimized implementation of design patterns on http://www.dofactory.com. But not all patterns are available on the site. Is there a site/blog which has an .NET optimized implementations of all design patterns?

share|improve this question
1  
The site you mention provides implementations for most of the "Gang of Four" patterns. What other patterns do you need ? there is no "official" list of design patterns anyway... – Thomas Levesque Aug 28 '09 at 15:57
@Thomas I am aware that they have all GoF patterns, but not all patterns have .NET optimized code, which is available only if you buy their framework – Sandbox Aug 28 '09 at 15:59
most of the 23 at dofactory.com/Patterns/PatternVisitor.aspx seem to have code. which ones are missing? – Ray Tayek Aug 28 '09 at 16:00

3 Answers

My expectation of Design Patterns is that you don't "buy" (or otherwise acquire ready-built) implementations. Rather, as you design your classes you apply relationships that conform to the patterns. To take an extreme example, why would you "buy" a Singlton, or a Visitor pattern?

Framworks are much bigger than patterns, those it's reasonable to "buy", but there you are deliberately agreeing to delegate very major parts of your design to the framework author - and thereby save much time.

share|improve this answer
Seems strange to me as well, but maybe I misunderstood the whole site and it's used for learning? Seems much easier to just buy a decent book. – Skurmedel Aug 28 '09 at 16:08

I spent quite some time on reading this book, those 23 GoF patterns should all covered with c# examples there, hope it could help you too.

share|improve this answer

Actually you can google and find their framework somewhere in the net or buy it. I was looking for a long time but never found a full imlpementation of .net optimized patterns. Instead of it I`d suggest to look for design patterns pattern by pattern in different .net open source projects.

The cons are obvious: you`ll be able to see implementation in the real world (and implementation of dofactory imho is far away from the real world even in their real world examples).

Youll be able to see different implementations and the whole code structure involved in the pattern. So youll see how it influenced the design and what problem it solved. As patterns are good reusable design solutions it is a good way to see them in real code to use afterwards.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.