public static void Serialize(XmlWriter xWrite, Nation contents) { XmlSerializer Writer = new XmlSerializer(contents.GetType()); XmlSerializerNamespaces ns = new XmlSerializerNamespaces(); ns.Add("", "http://www.hybrasyl.com/XML/Nations"); Writer.Serialize(xWrite, contents, ns); }
public static Nation Deserialize(XmlReader reader, Nation contents = null) { //reader.Settings.IgnoreWhitespace = false; if (contents == null) contents = new Nation(); XmlSerializer XmlSerial = new XmlSerializer(contents.GetType()); if (XmlSerial.CanDeserialize(reader)) { var xContents = XmlSerial.Deserialize(reader); contents = (Nation)xContents; } return contents; }