You need to avoid this with help \, so write \"instead "where you mean ".
string.Remove removed the part of the string based on the start index and length, so this is not what you are really looking for, but replacing it will help you get rid of everything ".
myString.Replace("\"","")
source
share