When I try to insert signs like < or > in an InnerText-part of a xml-tag then after accessing the xml by xmlDocument.InnerXml these signs are replaced by their html-code like < or >, can someone explain this to me and perhaps give me a solution for this problem?
with kind regards
Sebastian
Those symbols have to be escaped because angle brackets are used as document structures. To deal with the issue, just make sure you’re decoding the text properly.