//Use the Template Method Pattern.
//The Runner class creates a list of Person object types and a list of Country object types.
//The Person and Country data is than sorted.
List<Person> colPerson = new List<Person>
{
new Person("John", "Doe"),
new Person("Jane", "Doe"),
new Person("Alan", "Alda"),
new Person("Joe", "Bloggs"),
new Person("Anon", "Ymous")
};
colPerson.Sort();
Console.WriteLine("*** Output of sorting Person objects ****\n");
foreach (Person person in colPerson)
{
Console.WriteLine("{0}, {1}", person.Firstname, person.Lastname);
}
List<Country> colCountry = new List<Country>
{
new Country("United Kingdom"),
new Country("United States"),
new Country("Portugal"),
new Country("France")
};
colCountry.Sort();
Console.WriteLine("\n*** Output of sorting Country objects ****\n");
foreach (Country country in colCountry)
{
Console.WriteLine(country.CountryName);
}