I am currently working on program that must read data from a XML stream that some time may contains '&' symbols
i.e :
<XMLRoot>
<Element>
<Node>
This is a dummy data&more!
</Node>
</Element>
</XMLRoot>
When I parse this text I get an error message telling me 'reference to undeclare entity'.
Is there a way to remove 'entity check' with the C#'s XMLParser?