2
votes
1answer
47 views
Patterns used in WPF
I have been getting more involved with WPF for about a year now. A lot of things are new and sometimes it is hard to get my head wrapped around it.
At the same time I am rereading the GOF Design …
16
votes
9answers
2k views
Dependency Injection vs Factory Pattern
Most of the examples quoted for usage of Dependency Injection, we can solve using the factory pattern as well. Looks like when it comes to usage/design the difference between dependency injection and …
2
votes
5answers
117 views
.Net patterns vs. GOF
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 …
1
vote
1answer
108 views
Command Pattern: Client and Invoker
In the command pattern:
Why shouldn't the client participant be the same class as the invoker participant? Is there possible scenarios when the client participant and the invoker participant can be …
1
vote
2answers
262 views
Classic Singleton implementation in OCaml
I am attempting to conceptualize the Singleton design pattern (qua Java) in OCaml and have seen ever instance allude to functors or modules, neither of which I am using in a proof of concept of GoF's …
6
votes
12answers
879 views
Does a definitive list of design patterns exist?
Where did the idea of design patterns come from, who decided what is and isn't a pattern and gave them their names? Is there an official organisation that defines them, or do they exist through some …
