Here's my code:
这是我的代码:
XmlNodeList otherImageId =
document.DocumentElement
.SelectNodes("/OHManager/config/customimage/image/@id");
XmlNodeList otherImage =
document.DocumentElement
.SelectNodes("/OHManager/config/customimage/image");
for (int i = 0; i < 5; i++)
{
Console.WriteLine("Image Id" + otherImageId[i].InnerText.ToString());
Console.WriteLine("File name" + otherImage[i].InnerText.ToString());
}
XmlNodeList otherIm