a DotNetStyling - .Net World by Armen Ayvazyan
Welcome to DotNetStyling Sign in | Join | Help
Add to Technorati Favorites Add to Google Reader or Homepage Add to My AOL Subscribe in FeedLounge Subscribe in Bloglines Add to Excite MIX Add to flurry Add to Pageflakes Subscribe in NewsGator Online


Browse by Tags

All Tags » Design Patterns   (RSS)
Abstract Factory Design Pattern
Abstract Factory provides interface for creating set of objects without specifying concrete implementation. Abstract Factory uses abstract classes and decouples concrete implementation from the system. It brings flexibility to easily Read More...
Decorator Pattern
One of the beautiful patterns in GOF's (Gang Of Four) bucket is a Decorator Pattern. The purpose of Decorator pattern is to add extended functionality to the class without making any change in it. The blog describes architecture and has sample which shows pattern in work. Read More...
Simplicity and Power of Composite Design Pattern
Last couple of days I was working on some small project where I had to deal with nested objects (or tree structure objects) and I immediately decided to use Composite design pattern as it is one of the best solution for dealing with tree structure objects. Read More...