using System;
using System.Linq;
namespace ConsoleApplication_C_Sharp
{
class Program
{
static void Main(string[] args)
{
string[] arr = new string[] { "python", "java", "php", "c", "c++", "c#" };
var desc = from s in arr
orderby s descending
select s;
foreach (string str in desc) {
Console.WriteLine(str);
}
}
}
}
/*
run:
python
php
java
c++
c#
c
*/