現在のタグ xmlPhoto
内にあるすべてのタグを取得したいと思います。Property
XML
<Properties>
<Property>
<Photos>
<Photo>
</Photo>
</Photos>
</Property>
<Property>
<Photos>
<Photo>
</Photo>
</Photos>
</Property>
<Property>
<Photos>
<Photo>
</Photo>
</Photos>
</Property>
</Properties>
コード
xmlnode = xmldoc.GetElementsByTagName("Property");
for (int i = 0; i < xmlnode.Count - 1; i++)
{
XmlNodeList xmlNode2;
xmlNode2 = xmldoc.GetElementsByTagName("Photo");
// I wanna get all the Photo tag that are inside the current Property tag
for (int j = 0; j < xmlNode2.Count - 1; j++)
{
// Get the total of tags called Photo in my XML
}
}
しかし、私のコードでは、現在のタグではなくPhotos
、すべてのXML
ファイルのタグの合計を取得していますProperty
。
どうやってやるの ?