string str1 = "abcd"; char[] caArray = str1.ToCharArray(); Array.Reverse(caArray); //將char array中的元素位置反轉 string str2 = new ...
確定! 回上一頁