string c = "123456";
char[] array = c.ToCharArray();
c = "";
for (int j = array.Length - 1; j >= 0; j--)
{
     c += array[j].ToString();
}
Console.Write("{0}", c);
Console.ReadKey(); 
string c = this.textBox1.Text;    //假如是12345
Array.Reverse(c);                 //倒序, 现在已经是54321
string v = new String(c);         //v 就是你要的
MessageBox.Show(v);