Hi,
I'm writing a string containing some XML via System.Xml.XmlWriter. I'm stuck using WriteString(), and from the documentation:
WriteString does the following: The characters &, <, and > are replaced with &, <, and >, respectively.
I'd like this to stop, but I can't seem to find any XmlWriterSettings properties to control this behavior. What are some workarounds? Thanks!
David