using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
publicclass MainClass {
publicstaticvoid Main() {
string[] words = { "abc", "bcd", "def" };
var sortedWords =
from w in words
orderby w.Length
select w;
Console.WriteLine("The sorted list of words (by length):");
foreach (var w in sortedWords) {
Console.WriteLine(w);
}
}
}