views:

84

answers:

2

Where can I find a good video/screencast tutorial that will explain and give code examples on Object oriented design patterns - ideally using c#?

Many thanks

+2  A: 

I have found many good videos on software design (and other programming topics) at dimecasts. They are all quite short (~10 minutes).

There is a design patterns tag.

Oded
A: 

You can find some video tutorials about design patterns here. But i think that the best way to learn would be to start writing small projects in which you'll implement different design patterns that you learn. You could use some books for this. I recommend one like this or this, they are both about design patterns applied in c#.

Adrian Faciu