I have a XML file which contain this code:
more information
+<RoutePoints z:Id="410" z:Size="8">...</RoutePoints>
more information
I need to access to value of z:id, I think should be something like this:
xmlDocument = XElement.load(pathfile);
var ns = xmlDocument.getDefaultNamespace();
int id = (int)xmlDocument.Descendants( ns + "RoutePoints").Attribute....;
Could you help me to access z:Id value? If it is possible by prefix and attribute?