tags:

views:

218

answers:

3

I find myself rarely using object oriented principles when I design applications. I am looking for a good reference for Object Oriented design. I'm using C# as my programming language and would like to have a reference which helps to make use of the OO contructs provided by C#. But basically I need a good book to derive some inspiration.

A: 

I think a book on Design Patterns may be what you want. The classic one would be Deisgn Patterns: Elements of Reusable Object Orientated Software.

lnz
+1  A: 

Here goes: two milestones

  1. Design Patterns: Elements of Reusable Object-Oriented Software
  2. Head First Design Patterns
Rodrigo
I would add "head first object oriented analysis and design" to that list as well
Jeff Tucker
Which one do you recommend to read first?
Head first is more "readable" than GoF
Rodrigo
A: 

Check out Evan's DDD

Chance