views:

214

answers:

1

Hi everyone,

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

+1  A: 

Are you looking for a foreach loop?

SLaks
It's okay I found it : foreach (XElement el in tab.Nodes) ;-)