Tips on XmlSerialization
To support default XmlSerialization with .NET XmlSerializer a class must to: include constructor without parameters all public properties that should be saved must have public setter if it shouldn’t be saved then must have [XmlIgnore] attribute Class example: public class dataForXML { public dataForXML() { } private String _bProperty; // this we don’t want to…