I'm using XmlTextWriter to generate XML from a C# app. The initial input will be in this format, 1" , but I can replace it with whatever. I need to end up with 1"
but I keep getting 1"
C#
xml.WriteStartElement("data");
xml.WriteAttributeString("type", "wstring");
xml.WriteString("1"");
xml.WriteEndElement();
Ha! When I past the XML I need in here it converts it to 1". But whats I really need to show is the actual 1"
in the 3rd line of the code.
I also need to use / and Ø. How can I do this, thanks.