CONVERT ENTIRE CCOLUMN TO DOUBLe without for each

i wanna do the below actions without for each way.Any Help?

how can we convert the entire column to double?
How can we generate s.no to all dynamic rows?

we achieved good results by following:

Adding an additional datacolumn within the right datatype and using the Expression Property

after this we do remove source datatable (remove datacolumn or dtData.DefaultView…)
if needed rename the previous added datacolumn

OR

  • clone datatable - dtDataC
  • add a datacolumn to dtDataC (refelcting the converted datacolumn)
  • using a LINQ for the conversion
  • remove source datacolumn
  • rename the previous added datacolumn