int[] myarray = new int[]{1,2,3,4}; for(int i = myarray.Length - 1; i >= 0; i--) { Console.WriteLine(i); }