I have an issue using XmlElement with an xml file.
I have some xml file with descriptions in it.
In order to format the text description, we have used some html tags like
this is a desc another line of desc
So far I didn’t found a way using XmlElement
to retrieve the complete text I’m looking :
this is a desc another line of desc
Well that isn’t actually text at all, it’s a tag, so it’ll get parsed out. You’d just have to iterate the sub-elements, concatenating the text and looking for special tags like this, and doing whatever’s necessary with them.