public static void Main()
Console.WriteLine("Hello World");
string sentence = "the quick brown fox jumps over the lazy dog";
string[] words = sentence.Split(' ');
var query = from word in words
var query2 = from word in words
var query3 = from word in words
orderby word.Length descending, word
foreach(string word in query)
Console.WriteLine("---------------");
foreach(string word in query2)
Console.WriteLine("---------------");
foreach(string word in query3)