string 轉換成 Char[] string ss = "abcdefg"; char[] cc = ss.ToCharArray(); Char[] 轉換成string string s = new string(cc);