Use static method syntax to call the query operators. : Enumerable « LINQ « C# / C Sharp






Use static method syntax to call the query operators.

 

using System;
using System.Collections.Generic;
using System.Linq;
public class MainClass {
    public static void Main() {
        string[] names = { "J", "P", "G", "Pa" };

        IEnumerable<string> filtered = Enumerable.Where(names,n => n.Contains("a"));
        IEnumerable<string> sorted = Enumerable.OrderBy(filtered, n => n.Length);
        IEnumerable<string> finalQuery = Enumerable.Select(sorted,n => n.ToUpper());

    }
}

 








Related examples in the same category