using System;
using System.Linq;
class Program
{
static void Main() {
int[] array = new int[] {9, 7, 3, 5, 0, 6, 1};
var result = (from value in array select value).Reverse();
Console.WriteLine(string.Join(", ", result));
}
}
/*
run:
1, 6, 0, 5, 3, 7, 9
*/