using System.Collections.Generic;
public static void Main()
"hello", "wonderful", "linq", "beautiful", "world"
var shortWords1 = from w in words
var shortWords2 = words.Where(x=>x.Length <= 5);
Console.WriteLine("ShortWords1: {0}", shortWords1.Count());
Console.WriteLine("ShortWords2: {0}", shortWords2.Count());
foreach(var item in shortWords2)