Archive for September, 2011

Command Pattern with Notification Event Delegates

Monday, September 19th, 2011

Here is a nice little code I did recently, where the Command Pattern is used with a notification observer like pattern. First of the Command Pattern, a simple interface for task with an execute method ?View Code CSHARP1 2 3 4 5 6 7 public interface ITask { /// <summary> /// Execute the task /// [...]

Share