I have some types that I want to serialize/deserialize and generate a UI based on the selected object. The UI will also change the object which in turn I will have to serialize to store it in my app.
So:
[obj_apple stored in the app] -> select obj_apple -> deserialize -> show in UI -> use the UI to change obj_apple -> deselect obj_apple -> serialize -> [obj_apple stored in the app]
The objects have to be serialized/deserialized and this data has to be string. That's why I thought having an xml serializer would be better.
Which type of serializer would be the best? And are there any good examples to implement this for custom types?