次のようなxmlファイルがあります。
<Root>
<Folder1>
<file>AAA</file>
<file>BBB</file>
<file>CCC</file>
</Folder1>
<Folder2>
<file>AAA</file>
<file>BBB</file>
<file>CCC</file>
</Folder2>
</Root>
文字列のリストにすべての親が必要です。使用してみました
using (XmlTextReader reader = new XmlTextReader(pathFiles))
{
reader.ReadToFollowing("file");
string files = reader.ReadElementContentAsString();
}
したがって、「files」変数には「AAA」のみが含まれ、
reader.ReadElementContentAsString()
リストを受け入れません。
出力を次のように抽出する方法はありますか{“AAA”,”BBB”,”CCC”, AAA”,”BBB”,”CCC”}