K
K Viltersten
I recieved a DataTable oject and i wished to
obtain a list of the captions. So, i went
like normal people do:
from e in dataTable.Columns
select e.Caption;
However, i run into problems due to Columns
not being LINQ-queryble. I've tried to use
AsQueryble and GetEnumerator. However, to no
avail. Any suggestions?
obtain a list of the captions. So, i went
like normal people do:
from e in dataTable.Columns
select e.Caption;
However, i run into problems due to Columns
not being LINQ-queryble. I've tried to use
AsQueryble and GetEnumerator. However, to no
avail. Any suggestions?