var query = from c in s1 orderby c descending select c;foreach (string item in query){ Console.WriteLine(item);}