页: 1
<Location xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
<Latitude>-1</Latitude>
<Longtitude>-1</Longtitude>
</Location>
如果没有名称空间(xmlns:i......),我可以使用以下询问。
//xdoc is an XDocument loaded with the above xml
var locCollection = from p in xdoc.Descendants("Location")
我可以使用名称空间,但没有“一”预先规定。
XNamespace ns = @"http://www.w3.org/2001/XMLSchema-instance"
var locCollection = from p in xdoc.Descendants(ns + "Location")
因此,我如何处理牙齿“一”前??
Thanks.