我想获取Photo
当前Property
标签 xml 中的所有标签。
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
标签中的标签总数。
我怎样才能做到这一点 ?