Listing 15-18 extracted from chapter Collections
Listing 15-17< > Listing 15-19
This listing can be compiled with the command line: csc.exe /target:exe Example_15_18.cs Errors: 0 Warnings: 0
public class Program { public static void Main() { int[] arr = { 3, 1, 6, 2 }; System.Array.Sort( arr ); // Here 'arr' contains {1,2,3,6}. } }