Readxml を使用して xml ファイル データを DataSet に読み込むと、ランタイム エラーが発生します。
「encoding」は予期しないトークンです。予期されるトークンは「?>」です」
私のC#コードは次のとおりです。
XmlReader xmlFile = XmlReader.Create("WH7_Inventory.xml", new XmlReaderSettings());
DataSet ds = new DataSet();
ds.ReadXml(xmlFile);
私のxmlファイルは
<?xml version="1.0" encoding="UTF-8" standalone="true"?>