News

Implementing the Observer design pattern We have had enough of the concepts – let’s now understand this design pattern with an implementation. First off, we need to know the participating ...
The Observer pattern is probably one of the best ways to reduce coupling between objects. For example, if you are writing a typical application, you may decide to provide a factory or manager that ...
We’re implementing this pattern in the EventDelegate namespace. In the Observable class, we have defined a delegate with a signature and an event of a delegate type.