C# Console Application ile yapılmış, içerisinde isimler bulunan string bir diziyi en son elemandan itibaren ekrana yazdıran uygulama örneği:

class Program
{
static void Main(string[] args)
{
string[] strDizi = { "Ahmet", "Hayri", "Recep", "Hüseyin","Seda" };
int son = strDizi.Length - 1;
for (int i = son; i >= 0; --i)
{
Console.WriteLine(strDizi[i]);
}
Console.ReadKey();
}
}
