Mega Code Archive

 
Categories / C# Tutorial / LINQ
 

Range Filtering

using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.ComponentModel;     class MainClass     {         static void Main()         {             var collection = Enumerable.Range(0, 10)                            .Where(x => x % 2 != 0)                            .Reverse();             foreach (var element in collection)             {                 Console.WriteLine(element);             }         }     }