如果想替换第3个位置的“b",为“E"
string s = "bbbbbccc"; char[] c = s.ToCharArray(); c[3] = 'e'; s = new string(c);