char[] c = this.textBox1.Text.ToCharArray(); Array.Reverse(c); string v = new String(c); MessageBox.Show(v);