I have this xml
I want my code to able to
You should take a look at XElement
article at c-sharpcorner.com
You need to get the attribute of the <audio> element:
<audio>
string value = xdoc.Root.Element("audio").Attribute("first").Value;