/*
Instructions
------------
Reverse the string and output the result.
For the purposes of this exercise, please avoid using Array.Reverse().
*/
using System;
public class Program
{
public void Main()
string str = "Reverse me!!";
char[] value = str.ToCharArray();
string ans = string.Empty;
for(int i=value.Length - 1; i >= 0; i--)
ans += value[i];
}
Console.WriteLine("Answer: {0}", ans);