比如:你好吗 改为:你好啊 就指定某一个字符改动,怎么实现?char name = '大';string ame = textBox1.Text;for (int i = 0; i < ame.Length; i++) { ame[i] = name; } 这么写为什么无效?