string newStr = "";string text = "abcde";foreach (char c in text.ToCharArray()) { newStr += (int)c + 5; //每个字符的ASCII加上5}