I'm creating a WP7.1 app that will receive data from a web API and turn it into usable stuffs.I want to parse the following XML so that I can put it in the following list.List:\[code\]public class Image{ public string Name; public string Location; public string minDisk; public string minRam; public string OS_Distro; public string OS_Version; public string ID;}List<Image> _Images = new List<Image>();\[/code\]The App gets the data through a WebClient call which returns plain old XML as follows:XML File: http://www.sendspace.com/file/uiy557I want to cycle through each image and do the following:\[code\]_Images.Add(new Image() { Name = tName, Location = "ORD", minDisk = tminDisk, minRam = tminRam, OS_Distro = tOS_Distro, OS_Version = tOS_Version, ID = tID });\[/code\]Where tVARIABLE is the value returned from the XML.I've searched high and low for this but it just seems to go wrong every time.I've tried the following:\[code\] StringReader stream = new StringReader(e.Result); XmlReader reader = XmlReader.Create(stream); while (reader.Read())....\[/code\]Please help!!!