I want to extract a value from the datatable and store to a collection. What would be the best way to do it?
The rows in my Datatable will have data like :
Row 1 <configuration><Store parameter="Atribs">AB,CD</Store></configuration>
Row 2 <configuration><Store parameter="Atribs">EF,GH,IJ</Store></configuration>
......
I want to retrieve and store the values in a collection like,
Collection 1 :
AB
CD
Collection 2 :
EF
GH
IJ
Collection ....
Here you go…