.net - Update programmatically xml with C# -


I try to update XML without linq (I am using VC 2.0). My XML file format:

    0   after yusuf   0   update:   0   yusuf   1    

but I have any idea update status You can do this with any version: = 0 to status = 1

(Silverlight, where only XDocument is present):

  XmlDocument doc = new XmlDocument (); Doc.LoadXml (xml); // or doc.Load (path) doctor. Select Sense Node ("/ Schedule / Status") Intratex = "1"; String newxml = doc.OuterXml; // or doctor. Save (path);  

Comments