Serialise data to xml
C#using CI.WSANative.Serialisers;
All public properties on the object will be serialised - use the System.Xml.Serialization.XmlIgnore attribute to ignore properties
C#WSANativeSerialisation.SerialiseToXML(MyObject);
If the type to deserialise to has a constructor that takes arguments a default constructor must be specified as well
C#WSANativeSerialisation.DeserialiseXML<ObjectType>(MyObject);