I'm using c#.
I have the follwoing xml file:
<MyXml>
<Element><x> y</p><Element>
<Element>&quot;my qoute&quot;<Element>
</MyXml>
How can i "filter" all the illegal characters? (<,>," etc..)
I need to write my own code like as follow:
myElement.InnerText.Replace("<","<");
or i have another way to do that?
Thanks!