I\'m trying to query out some information from a heavily namespaced XML document and am having some trouble finding attributes that are also namespaced.
The XML looks li
You can use System.Linq:
country.Attributes().Where(a => a.Name.LocalName == "notation")?.First()?.Value;