I'm writing a program that needs to be able to find a specific node in an XML file and delete that node. Being new to C# I'm having trouble accomplishing this. Given the following file, how would I go about locating the node for "br_factors" and deleting it.
Steve
Code:
<tables>
<table name="13d_control"/>
<table name="13d_exclusions"/>
<table name="13f_exclusions"/>
<table name="apd"/>
<table name="apdh"/>
<table name="ar"/>
<table name="ba"/>
<table name="bn"/>
<table name="br_factors"/>
<table name="br_rates"/>
<table name="br_tickets"/>
<table name="buypwr"/>
<table name="buypwr_calc"/>
<table name="ca"/>
<table name="cd"/>
</tables>
Steve