xmltextreader

C# XmlTextReader: html entity replace

Hello I have xml file with TAG like this: <Question>dzia&amp;#322;owa</Question> I'm reading this file using XmlTextReader and for this TAG I get something like this: dzia&#322;owa How to replace html entity numbers inside my xml to get something like this: "działowa"? ...