I have a class, which is serialized using the DataContractSerializer
class. Now I want to update a single property (a string) of the serialized object.
For some reason, I can't find a functionality for this, so my only option would be to serialize the complete object - which can get quite big. It seems a bit of overkill to serialize several hundreds of lines just to change a single string element. Is there no better approach to this?