I have the following XML document
<MimeType>
<Extension>.aab</Extension>
<Value>application/x-authorware-</Value>
</MimeType>
<MimeType>
<Extension>.aam</Extension>
<Value>application/x-authorware-</Value>
</MimeType>
The whole document contains about 700 entries, how can I extract a single Mime Type element using XPath and populate it into a strongly typed C# MimeType object?
Thanks