by David Kiff
23. December 2008 00:00
Introduction
Whilst working in India, I had to persuade our development team why we should pair program and what benefits it is currently giving our UK Teams. Here are a few of my thoughts used to persuade our development team, enough to give it ago.
Pair programming is where two developers work on the same machine. One person is the driver, the other the navigator. The driver performs the coding whilst the navigator is continually reading, spell-checking and reviewing the driver’s code; continually offering input and thinking through problems. More...
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...