vote up 3 vote down star

I am a senior level developer but I haven't had a lot of formal training and I although I have used many design patterns and seen them used in my years as a developer, no one really went out of their way to say. "Oh this is an observer pattern, or this is a Singleton pattern."

Reading over some of the design patterns, I came across the Observer pattern and it seems to be to be very similar to the way the .NET framework events work. Am I missing something fundamental about this?

flag

60% accept rate

3 Answers

vote up 4 vote down check

The .NET Event model is pretty much a integrated implementation of the observer pattern in the common language runtime. The .NET languages implement observer directly in their language specific manner, using the framework's built-in support for this.

In most programming languages, the observer pattern requires customized development or libraries.

It comes for free as part of the language in C#, VB.NET and most other languages built to use the CLR.

link|flag
1  
.NET is not a language, .NET is a runtime environment. – Anders Karlsson Apr 30 at 16:57
1  
True. I was refering to the CLR, more than a specific language, but was non-specific in my post. Edited to be more clear. Thank you for the comment. – Reed Copsey Apr 30 at 17:09
vote up 2 vote down

Many event models, like the Java 1.1 and beyond, as well as the .NET event model are basically implementations of the Observer pattern.

Note that this even applies to older mechanisms, such as using callback methods in C for event handling. It's the same intent, just implemented slightly differently.

link|flag
vote up -1 vote down

Why do you think there must be a difference?

Don't you think the .NET designers read Design Patterns as well?

Actually, the Observer pattern (like all in the book) were well known long before they were categorized and named by the Gof4. It was used to implement the .Net event model, as well as the Win32 & Win16 event models, and probably many others.

link|flag
I didn't say there must be a difference. I was asking if I missed something. (-1 aggresive non-answer) – Jeff Martin Apr 30 at 16:33
Lol @ agressive non-answer – Janie Jul 15 at 18:10

Your Answer

Get an OpenID
or

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