Detaylı İnceleme
Örnekte .com ifadesi .COM ile değiştirilmiş ve messageBox içinde gösterilmiştir.
string mystr = "www.kodornekleri.com";
string newstr = mystr.Replace("com", "COM");
MessageBox.Show(newstr, "C# String Replace", MessageBoxButtons.OK, MessageBoxIcon.Information);
Kodu çalıştırmak için ▶ butonuna tıklayın.