Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
xmlを読み取るときにXmlTextReaderエンコーディングを「windows-1252」に設定する方法。xmlからのエンコーディングを使用したくありません。
XmlTextReader xtr = new XmlTextReader(pathToXML);
注:改行を保持するには、StreamReaderの代わりにXmlTextReaderを使用する必要があります。
StreamReader reader = new System.IO.StreamReader(pathToXML, System.Text.Encoding.GetEncoding("Windows-1252"), true); XmlTextReader xmlReader = new XmlTextReader(reader);
動作するはずです