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
You could use Regular Expressions also.
Console.WriteLine(Regex.Replace("This is string", @"(?<=^.{2}).", ""));
This would remove the third character from the start.
DEMO