I have xml file like this:
I need to find defect number first and the create a xml file for it. So my output should have two xml files 1458.xml and 1459.xml.
1458.xml should contain :
1459.xml should contain :
Please let me know the best approach using c# to do this.
VulpesPosted Jan 3, 2012, 11:53 AM
then the following LINQ to XML code should do what you want:
maanPosted Jan 3, 2012, 12:00 PM