Template Method: Implementation and Example
Learn the Template Method design pattern by implementing an example program.
We'll cover the following...
Implementing the Template Method design pattern
In this example, we’ll build an application that’s capable of converting text from one format to another. We’ll use the console application as our project type. The first thing that we’ll do is to add the following abstract class, which contains ...