Error CS1061: 'XmlDocument' does not contain a definition for 'SelectSingleNode' and no
extension method 'SelectSingleNode' accepting a first argument of type 'XmlDocument'
could be found (are you missing a using directive or an assembly reference?)
我是.net上的新手,发生了一个奇怪的错误,错误代码如下:
XmlDocument xmlDoc = new XmlDocument();
xmlDoc.Load(fp);
XmlNodeList nodelist = xmlDoc.SelectSingleNode("samples").ChildNodes;
当我使用Unity游戏时,代码运行正常,而在构建Hololens时出错。可能是因为Unity和UWP之间的.Net版本不同。
.net是3.5,而System.Xml是2.0.0 那么如何解决这个问题呢?我在网上搜索,有人建议添加软件包引用,如何添加?