Given the following XML

<?xml version="1.0" encoding="UTF-8" standalone="no" ?>
- <somethinglist>
- <something>
<metadata name="ArticleNumber">5555</metadata>
- </something>
- </somethinglist>


My Q: How can i get the value, in this case 5555 and how do i check whether I read it in Articlenumber.

I tried using XMLTextReader, but the property .LocalName always returns "metadata"!?

I think should be easy, but I can't find it


Many thanks in advance...


Ward