How to travel into an ArrayOfXelement?
I get an ArrayOfXelement for a result by a webservice. But now I wish to bind this data into a chart in Silverlight also I need to create a datatable.开发者_StackOverflow社区
My question is how to travel my ArrayOfXelement ? Any ideas ? Linq to XML ?
Regards.
Narglix
Are you looking for a foreach
loop?
void service_GetItemInfoCompleted(object sender, GetCartsOutDsCompletedEventArgs e)
{
var result = e.Result.Nodes;
}
精彩评论