I am sent an XML string that I\'m trying to parse via an XmlReader and I\'m trying to strip out the \\\" characters.
\\\"
I\'ve tried
.Repla
In .NET Framework 4 and MVC this is the only representation that worked:
Replace(@"""","")
Using a backslash in whatever combination did not work...