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
There is the String.Remove method:
s = s.Remove(2, 1);