Я пытаюсь прочитать XML-файл из мест API Google и добавить в структуру, но у меня возникли некоторые проблемы с C #, потому что я новичок в этом ... У меня есть XML-файл, подобный этому:
<PlaceSearchResponse>
<status>OK</status>
<result>
<name>Williamsburg</name>
<type>locality</type>
<type>political</type>
<icon>http://maps.gstatic.com/mapfiles/place_api/icons/geocode-71.png</icon>
<reference>CkRAAAAAUhZG...Yy0b4-sd1zCUu9P8</reference>
</result>
<result>
<name>Greenpoint</name>
<vicinity>New York</vicinity>
<type>neighborhood</type>
<type>political</type>
<icon>http://maps.gstatic.com/mapfiles/place_api/icons/geocode-71.png</icon>
<reference>CkQ-AAAAHIDo...nYmSR8l52FmkMH6c</reference>
<name>Peter Luger Steakhouse</name>
<vicinity>Broadway, Brooklyn</vicinity>
<type>restaurant</type>
<type>food</type>
<type>establishment</type>
<icon>http://maps.gstatic.com/mapfiles/place_api/icons/restaurant-71.png</icon>
<reference>ClRBAAAATIpR...mHSxoyiRcr_FVuww</reference>
</result>
...additional results...
</PlaceSearchResponse>
И мне нужно зациклить все узлы и добавить в список.Примерно так:
while (nodetype == "type")
{
PlaceType t = new PlaceType();
t.name = x.Element("type").Value;
place.types.Add(t);
}
Также мой класс Место:
public class Place
{
public string name { get; set; }
public List<PlaceType> types { get; set; }
public string vicinity { get; set; }
public string icon { get; set; }
public string reference { get; set; }
}