The Decorator Pattern in C#

by David Kiff 18. December 2008 13:09

This small article aims to explain what the decorator pattern is and how it could be applied in C#.

One of the Object Orientated principles is “open for extension and closed for modification”. The Decorator pattern stays true to this principle because it allows you to add extra functionality to existing objects without making any code changes. More...

Tags:

Patterns