How would you remove a single character from a string?
string = string.Remove(3);
but it removes the third char and everything else.
On
string = string.Remove(3, 1);
http://msdn.microsoft.com/en-us/library/system.string.remove.aspx
According to the remove method signature:
you need to provide a second parameter as the total number of characters to remove from
startIndex: