关于Replace轮换为什么没有用

关于Replace替换为什么没有用string strNeiRong sssddstrNeiRong.Replace(s, m)MessageBox.Show

关于Replace替换为什么没有用

  string strNeiRong = "sssdd";
            strNeiRong.Replace("s", "m");
            MessageBox.Show(strNeiRong);

我就想让他变成sssmm
为什么我输出出来还是sssdd  我在其他机子都试过了  求纠正 String
[解决办法]
strNeiRong = strNeiRong.Replace("s", "m");