static void Main(string[] args) { Selection_Sort selection = new Selection_Sort(10); selection.Sort(); Console.ReadKey(); }
static void Main(string[] args) { Console.WriteLine("Selection Sort Example\n"); Selection_Sort selection = new Selection_Sort(10); selection.Sort(); }
static void Main(string[] args) { Selection_Sort selection = new Selection_Sort(10); selection.Sort(); }