DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Replace() Method Of String Type
Replace method of string type
string sentence = "This is Dzone >> Snippet";
Console.WriteLine(sentence);
Console.WriteLine(sentence.Replace("Snippet", "New Links"));





