I have xml file with TAG like this:
<Question>dzia&#322;owa</Question>
I'm reading this file using XmlTextReader and for this TAG I get something like this:
działowa
How to replace html entity numbers inside my xml to get something like this: "działowa"?
The only HTML entity in your sample is &
. You've then got some normal text that says #322;
. You either want
<Question>dzia&łowa</Question>
which would give "dzia&łowa" (probably not what you want)
or
<Question>działowa</Question>
which would give "działowa"