using System;
namespace ConsoleApplication_C_Sharp
{
class Program
{
static void Main(string[] args)
{
Array intArray = Array.CreateInstance(typeof(Int32), 5);
intArray.SetValue(12, 0);
intArray.SetValue(11, 1);
intArray.SetValue(27, 2);
intArray.SetValue(73, 3);
intArray.SetValue(32, 4);
Array.Sort(intArray);
PrintArray(intArray);
}
public static void PrintArray(Array arr)
{
int cols = arr.GetLength(arr.Rank - 1);
foreach (object o in arr)
Console.Write(" {0}", o);
Console.WriteLine();
}
}
}
/*
run:
11 12 27 32 73
*/