News

Implementing the mediator design pattern in C#. But enough of the concepts—let’s get into some code. The participants in this design are the mediator, the concrete mediator, and one or more ...
As you can see, the mediator pattern is a simple software design pattern to implement. It's used for decoupling the communication between classes within an application. You should consider using the ...
C# Corner. All Talk: Using the Mediator Pattern in .NET Framework. How can one class communicate with each another, yet know nothing about that other class? That's where the mediator pattern comes in, ...