我在 页面加载中写了如下代码:               string xx = "123456789";
            xx.Remove(1,3);
            xx.Insert(2,"xxx");设置断点,一步一步查看,可是xx一直没变?
为什么?
如何解决?