I have been informed that today is Hello World Day, so in honor of that, I'd just like to say:
to you all!
Code:
static void Main(string[] args)
{
int[] hwRevInt = { 33, 100, 108, 114, 111, 87, 32, 111, 108, 108, 101, 72 };
for (int i = hwRevInt.Length - 1; i >= 0; i--)
Console.Write((char)hwRevInt[i]);
Console.ReadKey();
}
Comment