The Strategy Pattern

Definition Defines a family of algorithms, encapsulates each one, and makes them interchangeable. Strategy lets the algorithm vary independently from …

Read more

The Observer Pattern in C#

Definition

Defines a one-to-many dependency between objects so that when one object changes state, all its dependents are notified and updated automatically.

Read more