I have a specific problem:
looking at
<observation realtime_start="2013-02-23" realtime_end="2013-02-23" date="1975-01-01" value="4917.2"/> <observation realtime_start="2013-02-23" realtime_end="2013-02-23" date="1976-01-01" value="5186.8"/> So i'm trying to get the value attribute of a specific date but
string xmlNode = root.SelectSingleNode("/observations/observation/@value").Value; using that gets me the first value (4917.2). How would I go about specifying that I want value from "1976-01-01" and 5186?
Thank you.
5186or do you want the actual value (5186.8)?