xDocument オブジェクトがあり、以下のデータを含む xml ファイルを介してロードされます。
<note>
<header>This is xml2linq -- Part1.</header>
<from>From me</from>
<to>to stackoverflow</to>
<message>ohh wow</message>
</note>
<note>
<header>This is xml2linq -- Part2 .</header>
<to>to stackoverflow</to>
<message>ohh wow</message>
</note>
<note>
<header>This is xml2linq -- Part3 .</header>
<from>From me</from>
<to>to stackoverflow</to>
</note>
<description>
<item1>ohh nice</item1>
</description>
<description>
<language>c-sharp</language>
<item1>Inheritance</item1>
<description>
xDocument に linq クエリを記述し、以下の出力を取得したい
note(header,from,to,message)
description(item1,language)
** 説明。Note ノードが後に続くノード名の個別のリストが必要です。しかし、長い foreach または for ループを書きたくありません。しかし、xDocument オブジェクトに単純な linq クエリを書きたいと思っています。
この出力を得るのを手伝ってください...