//倒叙排列 string temp=""; for (int i = 0; i < strlist.Length / 2; i++) { temp = strlist[i]; strlist[i] = strlist[strlist.Length-1 - i]; strlist[strlist.Length - 1 - i] = temp; }