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?
No, you can’t use XDocument in .net 2.0