Is it possible to ignore namespaces in c# when using xPath? Is it possible to ignore namespaces in c# when using xPath? xml xml

Is it possible to ignore namespaces in c# when using xPath?


With XPath 1.0 all you can do is /*[local-name() = 'video']/*[local-name() = 'title']. With XPath 2.0 you can use a wildcard /*:video/*:title.