I am writing a string containing XML through System.Xml.XmlWriter. I am stuck using WriteString (), and from the documentation:
WriteString performs the following actions: The characters &, <and> are replaced by &, & lt; and>, respectively.
I would like this to stop, but I cannot find any XmlWriterSettings properties to control this behavior. What are some workarounds? Thank!
David
source
share