<books> <book name="Christmas Cheer" price="10" /> <book name="Holiday Season" price="12" /> <book name="Eggnog Fun" price="5" special="Half Off" /> </books>
我想使用linq解析这个,我很好奇他人用什么方法来处理特殊的.我目前使用的方法是:
var books = from book in booksXml.Descendants("book") let Name = book.Attribute("name") ?? new XAttribute("name",string.Empty) let Price = book.Attribute("price") ?? new XAttribute("price",0) let Special = book.Attribute("special") ?? new XAttribute("special",string.Empty) select new { Name = Name.Value,Price = Convert.ToInt32(Price.Value),Special = Special.Value };
谢谢,
> Jared