Chaining Query Operators/extracts all strings containing the letter “a”, sorts them by length, and then converts the results to uppercase

image_pdfimage_print
   
 

using System;
using System.Collections.Generic;
using System.Linq;

class LinqDemo {
    static void Main() {
        string[] names = { "J", "P", "G", "P" };

        IEnumerable<string> query = names
          .Where(n => n.Contains("a"))
          .OrderBy(n => n.Length)
          .Select(n => n.ToUpper());

        foreach (string name in query) Console.Write(name + "|");
    }
}

    


This entry was posted in LINQ. Bookmark the permalink.