I've scenario where the datatable may contain large number of rows. As a result i can't iterate and update the datatable using a loop.
I am using the following code to get row collection,
from row in CSVDataTable.AsEnumerable()
where CSVDataTable.Columns.Cast<DataColumn>().Any(col => !row.IsNull(col))
select row;
Any one please tell me how to assign the result of the above code to a datatable without using a loop.