Mega Code Archive

 
Categories / C# / LINQ
 

Chaining Query Operatorsextracts all strings containing the letter a, sorts them by length, and then converts the results to uppercas

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 + "|");     } }