I'm trying to refactor a library that's transmits it's object as XML. Although I think the XmlSerialzer of the .NET Framework can handle the serialization, the class all have a ToXML
function. In it all string values are being put through a function that escapes characters
like & and alike.
Does the XmlSerializer not escape those kind a characters automatically?