Reverse does exactly as it says : Reverse « LINQ « C# / CSharp Tutorial






using System;
using System.Collections.Generic;
using System.Linq;
public class MainClass {
    public static void Main() {

        int[] numbers = { 10, 9, 8, 7, 6 };

        IEnumerable<int> reversed = numbers.Reverse();    // { 6, 7, 8, 9, 10 }

    }
}








22.61.Reverse
22.61.1.Reverse does exactly as it says
22.61.2.An Example Calling the Reverse Operator
22.61.3.Get all reversed cars