2
votes
1answer
45 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 …
17
votes
9answers
1k 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 depen …
2
votes
5answers
114 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 …
1
vote
1answer
103 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 …
1
vote
2answers
256 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 …
6
votes
12answers
855 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 …
