vote up 2 vote down star

Since the GOF book was put together well before .Net came into being, are there any specific patterns described in GOF that are not appropriate for .Net? And if so, for what reason?

This is a question relating to a recent bounty discussion.

flag

5  
The GoF book was written well before Java was released. The GoF book was first published in October 1994 (wow - only 15 years ago, and it's already a classic) while Java was first released in 1995. – Thomas Owens Aug 27 at 20:09

5 Answers

vote up 9 vote down check

The idea with the GoF book wasn't to be language-specific, although they did provide samples to better explain the designs.

The idea was to provide patterns which appear again and again in software design, and something of a cookbook that any developer can use to implement those patterns as needed in their language of choice.

That said, when you look at .NET, as others have mentioned, you will see several of the design patterns implemented as first-class citizens right in the framework.

Are there any "not of use" because of a language? No. The patterns will continue to be useful, even if some are already implemented for you.

link|flag
vote up 0 vote down

No. Even the Observer which is a first class citizen in .NET (events) has it's uses as the recent Rx Framework shows.

link|flag
vote up 1 vote down

The GoF patterns tend to apply, in general, to object-oriented languages and, more specifically, to strongly typed languages or to languages with more severe strictures.

link|flag
vote up 2 vote down

The book C# 3.0 Design Patterns discusses the original design patterns in a .NET context. It is not as good as the original book IMO, but still worth a read.

link|flag
vote up 2 vote down

Well, some have limited use because they are already implemented in the framework.

For example, collections in .NET already support iteration out-of-the-box, so you wouldn't need to implement the Iterator pattern in most cases. Another example is Events which can be used instead of implementing the Observer pattern yourself.

link|flag

Your Answer

Get an OpenID
or

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