xdocとLINQを使用して、次のxmlファイルでスタイルのリストを取得しようとしています。
<?xml version="1.0" encoding="UTF-8"?>
<kml>
<Document>
<Style id="style62">
<IconStyle>
<Icon>
<href>http://maps.gstatic.com/mapfiles/ms2/micons/yellow-dot.png</href>
</Icon>
</IconStyle>
</Style>
</Document>
</kml>
ID = "style62"と、同じLINQ selectのhref内の値を取得するために構文を正しく取得できません。誰か助けてもらえますか?
var styles = xdoc.Descendants(ns + "Style")
.Select(s => new
{
//HELP!?!
//E.G
//
//id = s.something (style62)
//href = s.something (url)
}).ToList();