The Template Method Design Pattern using C# .Net
- by nijhawan.saurabh
First of all I'll just put this pattern in context and describe its
intent as in the GOF book:
Template Method:
Define the skeleton of
an algorithm in an operation, deferring some steps to
Subclasses. Template
Method lets subclasses redefine certain steps of an algorithm
without changing the Algorithm's
Structure.
Usage:…