请检查代码。即使在使用doc.Load()函数后,我也收到此错误。
Application.DoEvents();
XmlDocument xmldoc = new XmlDocument();
XmlNodeList xmlnode;
FileStream fs = new FileStream(file, FileMode.Open, FileAccess.Read);
xmldoc.Load(fs);
xmlnode = xmldoc.GetElementsByTagName("Source");
答案 0 :(得分:-1)
从XML文件夹中删除所有额外的隐藏文件。它不应包含“。xml”以外的任何文件。你还必须使用 xmlfile.Load()而不是xmlfile.xmlLoad()函数。