Linq to XML in .net 2.0

回眸只為那壹抹淺笑 提交于 2019-12-25 13:18:09

问题


IS there a way to use Linq to XML in .net 2.0? I'm not sure about it, if not, how could i recode this

var doc = XDocument.Load("config.xml");
var xVideo = doc
               .Element("XML")
               .Element("VIDEO");
xVideo.SetElementValue("MAPTEXTURELEVEL", 8);
doc.Save("config.xml");

Without using Linq to XML?


回答1:


XmlDocument doc = new XmlDocument();
doc.Load("config.xml");    
XmlNode node = doc.SelectSingleNode("/XML/VIDEO/MAPTEXTURELEVEL[1]");
node.InnerText = "8";
doc.Save("config.xml");

No, you can't use XDocument in .net 2.0



来源:https://stackoverflow.com/questions/10375038/linq-to-xml-in-net-2-0

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!