Using .NET XmlSerializer with get properties and setter functions
- by brone
I'm trying to use XmlSerializer from C# to save out a class that has some values that are read by properties (the code being just a simple retrieval of field value) but set by setter functions (since there is a delegate called if the value changes).
What I'm currently doing is this sort of thing. The intended use is to use the InT property to…