I have an xml that contains certain information that was serialized in a certain version. Now in next version, I want that information to be deserialized, but dont serialize it back in the same property/element. That information will be handled in a child class and that will serialize it. I know I can use XmlIgnore
but that will ignore both Serialization and deserialization.
P.S: I could make the string attributes null, but what about the doubles, int?