MyElementClass elmCls = ...; XmlWriterSettings xws = new XmlWriterSettings() { Encoding = Encoding.Unicode }; using (XmlWriter writer = XmlWriter.Create("MyXmlFile.xml", xws)) { serializer.Serialize(writer, elmCls); }
MyElementClass elmCls = ...; using (StreamWriter sw = new StreamWriter("MyXmlFile.xml", Encoding.Unicode)) { serializer.Serialize(writer, elmCls); }
Trouble logging in? Simply enter your email address OR username in order to reset your password.
For faster and more reliable delivery, add support@liquid-technologies.com to your trusted senders list in your email software.