I have a xml file like this one:
<root>
<image size = "small">www.linktosmallimage.jpg</image>
<image size = "large">www.linktolargeimage.jpg</image>
</root>
Im extracting the first link in this way:
foreach (XmlElement x in xmlSource.SelectNodes("/root"))
{
string s = x.SelectSingleNode("image").InnerText;
}
The question is: How do I get the second link? (the link for the large image, since is the only one that I need)?
Thank you in advance.