Hello,
How do I delete rows with duplicate Child in my xml file? For example if my xml file contains
<Row>
<Item>1</Item>
<Child>1</Child>1
</Row>
<Row>
<Item>2</Item>
<Child>1</Child>1
</Row>
<Row>
<Item>3</Item>
<Child>2</Child>1
</Row>
<Row>
<Item>4</Item>
<Child>1</Child>1
</Row>
I would like to create a new xml file with the following data (removing Rows with duplicate Child)
<Row>
<Item>1</Item>
<Child>1</Child>1
</Row>
<Row>
<Item>3</Item>
<Child>2</Child>1
</Row>
I am uding VB.NET (VS2010)
Thanks,
Victor
Open in new window