string s = "hello"; char[] c = s.ToCharArray(); for (int i = c.Length-1; i >=0; i--) { Console.WriteLine(c[i]); }