I'm working with c# .Net
I have a question,
I'm loading Xml file with XDocument.xDoc.Load(file), but it fails because in my content I also have xml tags:
Example: <root><abc><deg></abc></root>
My problem is that the Load function treats the <deg> as an Xml tag without a matching "</deg>"...
My question is, how can i replace the "<" and ">" of the "deg" with the matching "<" ">" in the easiest way?
N.B. my file is very big and I have a lot of tags...
Thanks!