私は自分のxmlドキュメントから要素の最後の10を抽出しようとしています、それを解析するためにこのコードを使用しています:
slideView.ItemsSource =
from channel in xmlItems.Descendants("album")
let id = channel.Element("catid")
let tit = channel.Element("name")
let des = channel.Element("picture")
orderby (int) id descending
select new onair
{
title = tit == null ? null : tit.Value,
photo = des == null ? null : des.Value,
};
助けてください:)ありがとう