XML 属性不能从类型“type”中进行选择
更新:2007 年 11 月
针对类型不是 XElement 或 IEnumerable(Of XElement) 的对象引用了 XML 属性。有关更多信息,请参见 XML 属性 (Attribute) 轴属性 (Property)。
' Generates an error.
Dim var = "sample text".@attr
**错误 ID:**BC36808
更正此错误
确保将要引用其属性的对象强类型化为 XElement 或 IEnumerable(Of XElement)。下面是一个示例:
Dim elem As XElement = <root attr="value"/> Dim var = elem.@attr
请参见
参考
XML 属性 (Attribute) 轴属性 (Property)