Linq to XML in .net 2.0

fatihyesilgul

New Member
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\[code\]var doc = XDocument.Load("config.xml");var xVideo = doc .Element("XML") .Element("VIDEO");xVideo.SetElementValue("MAPTEXTURELEVEL", 8);doc.Save("config.xml");\[/code\]Without using Linq to XML?
 
Back
Top