0

我加载了 XSD 模式定义(XDocument变量类型)我不知道如何获取someProperty值。有任何想法吗 ?

<xsd:form-definition xmlns:xsd="http://url/lorem.xsd"
     xmlns:ds="http://www.w3.org/2000/09/xmldsig#"
     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
     ...
     someProperty="ABC">
 ...
</xsd:form-definition>
4

1 回答 1

1

使用 LINQ to XML 很简单:

var attributes = (from n in xml.Root.Attributes("someProperty")
                        select n.Value).ToList();
于 2013-04-12T09:26:26.870 回答