私は次のXMLを持っています
<xml>
<version>1.0</version>
<products>
<product>
<name>Product 1</ProductName>
<id>1</ProductId>
</product>
<product>
<name>Product 2</ProductName>
<id>2</ProductId>
</product>
<product>
<name>Product 3</ProductName>
<id>3</ProductId>
</product>
</products>
</xml>
そして、私は製品をループするための次のコードを持っています
Dim xelement As XElement = xelement.Load("aaa.xml")
Dim products As IEnumerable(Of XElement) = xelement.Elements()
For Each product In products
Console.WriteLine(product.Elements("name").Value)
Next product
しかしproduct.Elements("name").Value
、エラーが発生しています。私はここで何を間違っていますか?