Example #1
0
 static void Main(string[] args)
 {
     int[] array = new[] { 11, 2, 3, 0, -5, -15, 0, 45, -100 };
     InsertionSort.Sort(array);
     Console.ReadLine();
 }