vote up 4 vote down star
5

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.

flag

68% accept rate

19 Answers

vote up 4 vote down

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

link|flag
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. – ph0enix Apr 23 at 17:18
vote up 4 vote down

I would start with a classic - GoF Design Patterns

link|flag
That's a pattern catalogue, not designed for learning. – SnOrfus Apr 23 at 18:50
vote up 3 vote down

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|flag
vote up 0 vote down

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

link|flag
vote up 23 vote down

Head First Design Patterns is best for learning.

link|flag
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 at 17:58
Mine was in java. Does there exists a .net version? – chrissie1 Apr 23 at 18:31
1  
It's in java, but the examples are easy to read and very relevant to C#. – IainMH Apr 23 at 18:57
I own this book and enjoyed it. But the teaching style in the book is not for everyone. – tyndall Apr 23 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 at 13:41
vote up 6 vote down

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|flag
1  
+1 for "incredibly huge cheese factor"... – IainMH Apr 23 at 17:15
vote up 1 vote down

Another vote for C# Design Patterns

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

link|flag
vote up 9 vote down

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

link|flag
vote up 0 vote down

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|flag
vote up 0 vote down

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|flag
vote up 1 vote down

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|flag
vote up 0 vote down

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|flag
vote up 0 vote down

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|flag
vote up 0 vote down

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|flag
vote up 0 vote down

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|flag
vote up -1 vote down

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

link|flag
vote up 0 vote down

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|flag
vote up 1 vote down

I would sincerely recommend dofactory.com

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

link|flag
dofactory is great. Esp as it specifically covers Head First Design Patterns and GoF. – IainMH Apr 23 at 20:03
vote up 0 vote down

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|flag

Your Answer

Get an OpenID
or

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