C# XmlTextReader: html entity replace
Hello 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"? ...