0

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.

My question is how to travel my ArrayOfXelement ? Any ideas ? Linq to XML ?

Regards.

Narglix

user301089
  • 115
  • 3
  • 10

2 Answers2

1

Are you looking for a foreach loop?

SLaks
  • 868,454
  • 176
  • 1,908
  • 1,964
0
void service_GetItemInfoCompleted(object sender, GetCartsOutDsCompletedEventArgs e)
{

        var result = e.Result.Nodes;
}
Tiago Sippert
  • 1,324
  • 7
  • 24
  • 33