System Linq C# by API

using System;
using System.Collections.Generic;
using System.Linq;
public class MainClass {
    public static void Main() {
        int[] numbers = { 10, 9, 8, 7, 6 };
        IEnumerable reversed = numbers.Reverse();    // { 6, 7, 8, 9, 10 }
    }
}