Let\'s say I have this list of asterisks, and I say it to print this way:
list = [\'* *\', \'*\', \'* * *\', \'* * * * *\', \'* * * * * *\', \'* * * *\'] for
string[] myList = null; myList = {'*', '* *', '* * *', '* * * *', '* * * * *', '* * * * * *'}; for(int i=myList.Length-1; i>=0, i--) { Console.WriteLine(myList[i].ToString()); }