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
Remove() Method To Remove String
Remove() method to remove string
string sentence = "This is a sentence";//// Total 18 character string. string sentence = test1.Remove(4); //// Start removing from 4th index. Console.WriteLine(sentence); //// First 4 index.
Output: This





