You need to use the correct escape sequence for the quotes symbol, you can find more information about escape sequencies here.
String stringWithSingleQuotes= "src="http://...";";
String withDoubleQuotes = stringWithSingleQuotes.Replace("'","\"");
You need to use the correct escape sequence for the quotes symbol, you can find more information about escape sequencies here.
String stringWithSingleQuotes= "src="http://...";";
String withDoubleQuotes = stringWithSingleQuotes.Replace("'","\"");