How to set XmlTextReader encoding to be "windows-1252" when I read a xml. I do not want to use the encoding from the xml.
XmlTextReader xtr = new XmlTextReader(pathToXML);
NOTE: I have to use XmlTextReader instead of StreamReader in order to preserve line breaks.
Should work