By tag: designpattern
0
kicks
Observer Pattern in C# = Events & delegates
One of the most interesting patterns in Design Patterns is the Observer pattern which is listed under Behavioral Patterns, it is really important how to make other classes which are interested in the state of another object get notified when the state changed.
0
kicks
What is a design pattern?
Learn what a design pattern is, how they originated, and how they are described.
0
kicks
Pattern Focus: Strategy Pattern
This post describes how to implement the Strategy Pattern to create filtering functions using C# and the interface approach.
0
kicks
Pattern Focus: Strategy Pattern using Delegates
Take your usage of strategies one step further; utilize C# delegates and anonymous methods to create a neat api for your domain.