I have an XML file with the following lines. I am able to navigate just fine but I can not access this value.
<Details>
<NodeCount>24</NodeCount>
<Node_x0020_Name>c002n02</Node_x0020_Name>
<Status>online</Status>
<Total_x0020_Raw_x0020_Capacity_x0020__x0028_MB_x0029_>3815478.75</Total_x0020_Raw_x0020_Capacity_x0020__x0028_MB_x0029_>
<Free_x0020_Raw_x0020_Capacity_x0020__x0028_MB_x0029_>139932.75</Free_x0020_Raw_x0020_Capacity_x0020__x0028_MB_x0029_>
If I use the the xChild(4).Value I get nothing
If I use the the xChild(4).ToString I get the entire line.
<Free_x0020_Raw_x0020_Capacity_x0020__x0028_MB_x0029_>134347.59</Free_x0020_Raw_x0020_Capacity_x0020__x0028_MB_x0029_>
while I am just looking for the value 134347.59. Any thoughts.