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