Replace character " in C#

c#

Solution

Escape it:

myString.Replace("\""," ")

Problem

I'd like to replace the character " by a space in a string in C#. But I have an issue when writing the function : ``` myString.Replace("""," ") ``` The first argument seems to be an issue. Any idea

Original source