How to remove one character from a string?
string = string.Remove(3);
but it removes the third char and everything else.
In accordance with the signature removal method :
public string Remove( int startIndex, int count )
you need to specify the second parameter as the total number of characters to remove from startIndex:
startIndex
string = string.Remove(3, 1);
http://msdn.microsoft.com/en-us/library/system.string.remove.aspx
string = string.Remove(3,1);
, String.Remove() "" -, . .
String.Remove(3,1) .