Is there any function in C# that remove from string on specific index, for example
string s = \"This is string\"; s.RemoveAt(2);
s is now \"Th
string s = "This is string"; s = s.Remove(2, 1);
Output : Ths is string
Ths is string
1st parameter is the starting index from which you want to remove character and 2nd parameter is the number of character you want to remove
1st parameter
starting index
number of character