我有一個XML文件,像這樣的:從XML元素中提取文本與屬性
<root>
<image size = "small">www.linktosmallimage.jpg</image>
<image size = "large">www.linktolargeimage.jpg</image>
</root>
林提取這種方式,第一環節:
foreach (XmlElement x in xmlSource.SelectNodes("/root"))
{
string s = x.SelectSingleNode("image").InnerText;
}
的問題是:如何獲得第二個鏈接? (大圖像的鏈接,因爲是我唯一需要的)?
預先感謝您。
完美!非常感謝! – 2010-10-20 00:35:38