Exemplo n.º 1
0
        public void Sort()
        {
            sortingStrategy.Sort(list);

            // Display results
            foreach (string name in list)
            {
                Console.WriteLine(" " + name);
            }

            Console.WriteLine();
        }
Exemplo n.º 2
0
 public void Sort(SortingStrategy <T> strategy)
 {
     strategy.Sort(_items, _count);
 }