public void Test2()
        {
            var list = new List <int> {
                5, 8, 4, 1, 2, 6, 4, 7, 9, 2
            };

            SelectionSorter.SelectionSortAscending <int>(list, Comparer <int> .Default);
        }