What would you recommend as the "best" VB.NET and C# books for learning Design Patterns? Preferably books that actually give examples of when to use the patterns. I need to recommend some books to a group of C# and VB.NET developers.

link|improve this question

71% accept rate
feedback

closed as not constructive by 0A0D, Amber, Ken White, templatetypedef, Graviton Sep 21 '11 at 1:40

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ for guidance on how to improve it.

19 Answers

Head First Design Patterns is best for learning.

link|improve this answer
Absolutely! As a matter of fact, just purchase every Head First book you can get your hands on. They're all worth it! – Boydski Apr 23 '09 at 17:58
Mine was in java. Does there exists a .net version? – chrissie1 Apr 23 '09 at 18:31
1  
It's in java, but the examples are easy to read and very relevant to C#. – Iain Holder Apr 23 '09 at 18:57
I own this book and enjoyed it. But the teaching style in the book is not for everyone. – brun Apr 23 '09 at 20:22
1  
Head First has a version of the book in C# now (and C++ as well). headfirstlabs.com/books/hfdp Scroll down to the Book code and downloads section. – pave Aug 21 '09 at 13:41
show 1 more comment
feedback

Head First Design Patterns for learning, GOF Design patterns as a reference.

link|improve this answer
feedback

It'll take a chapter or two to get past the incredibly huge cheese factor, but Head First Design Patterns is actually a fantastic book loaded with great examples.

link|improve this answer
1  
+1 for "incredibly huge cheese factor"... – Iain Holder Apr 23 '09 at 17:15
feedback

The obvious choice is C# Design Patterns. Love my copy. :)

link|improve this answer
I agree 110%, I read this book over the course of a summer during an internship, and while it isn't really designed to give you a complete overview of design patterns, it's a great reference and learning tool for being able to apply the patterns specifically to C# applications. – jeremyalan Apr 23 '09 at 17:18
feedback

I would start with a classic - GoF Design Patterns

link|improve this answer
That's a pattern catalogue, not designed for learning. – SnOrfus Apr 23 '09 at 18:50
GoF is not for beginners. – Syed Tayyab Ali Feb 19 '10 at 17:51
feedback

Here is one of the best:

Design Patterns: Elements of Reusable Object-Oriented Software

But before you go and spend money on a book, I would visit Design Patterns in C# and VB.NET - Gang of Four (GOF).

link|improve this answer
feedback

alt text

Good site for patterns http://www.dofactory.com/Patterns/PatternObserver.aspx

"Head First: Design Patterns" also have some forums regarding the book and a design meditation.

Another approach is to look into refractoring books where you start with a problem and then looks into what patterns is best to take care of this..... Just looking into patterns maybe can be a little bit to far from reality....

Not the best but if you like Ipod Apps then there is a Design Pattern App http://phobos.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=304867927&mt=8

Nice overview http://blog.markturansky.com/wp-content/uploads/2008/01/designpatterns1_sm.jpg http://blog.markturansky.com/wp-content/uploads/2008/01/designpatterns2_sm.jpg

link|improve this answer
feedback

I would sincerely recommend dofactory.com

which also offers code examples in vb.net + c# for all the design patterns

link|improve this answer
dofactory is great. Esp as it specifically covers Head First Design Patterns and GoF. – Iain Holder Apr 23 '09 at 20:03
feedback

Another vote for C# Design Patterns

I still miss Steve Metsker. He was a really great guy.

link|improve this answer
feedback

I really recommend the Head First Design Patterns book for learning design patterns. The book explains the different patterns in an easy to understand way, and also does a good job of teaching good design principles.

This book's examples are in Java, but this language is close to VB.NET and C#, so I didn't find this to be a problem most of the time, though later in the book there are a couple of very Java specific examples.

Keep in mind that this book is really a learning book, not a reference book. Most examples aren't close to code you can find in real applications, they're just meant to teach you how a pattern works.

link|improve this answer
feedback

Head First Design Patterns (again).

It is written with a Java programmer in mind, but the syntax is close enough to C# that the language should not be an issue.

But it is the best book I've seen for leaning design patterns.

link|improve this answer
feedback

Head First Design Patterns if you are totally new to the topic.

As a reference book and for learning even more I'd suggest Fowler's Patterns of Enterprise Application Architecture

link|improve this answer
Head First Design Patterns uses Java for its examples, but I found it to be absolutely brilliant (I work in C#). Highly, highly recommended. Read Fowler for depth, but read this book first! – Jay Aug 30 '10 at 4:16
feedback

http://sourcemaking.com/ Also you can order the book from the website.

link|improve this answer
feedback

I'm going out on a limb here and recommending a non C# book, but Holub on Patterns is an amazing book. Only knowing C++ and C#, I was still able to muddle through the Java and get the point. :)

link|improve this answer
feedback

I used Head First Design Patterns but when it got a little too jokey for me, i would refer to Design Patterns in C#.

link|improve this answer
feedback

I really like Patterns of Enterprise Application Architecture by Fowler, i keep opening it daily for references. It's not completely C# though, most examples is in Java but some is C#.

I also have to second Head First: Design Patterns.

link|improve this answer
feedback

Head First Deign Patterns was great for a intro to design patterns.

link|improve this answer
feedback

Design patterns, IMO, don't have anything to do with specific language. Specific language features may cause slightly different approach when implementing them

You can check out Code Complete. Its more from coder's perspective then from designers one.

Good starting place is: www.oodesign.com

You can check out this MSDN articles about some dotNet framework specifics Technical Articles

link|improve this answer
feedback

My favorite

1) C# 3.0 Design Patterns

2)C# Design and Development: Expert One on One

3) and obviously Design Patterns: Elements of Reusable Object-Oriented Software, also known as GOV

link|improve this answer
feedback

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