S
Som Nath Shukla
i have data table containg 5000 rows
to update it i am using foreach loop an updating very row with same value.
buts its too slow.is there any way to update all the rows in single.
foreach(datarow dr in dt.rows)
{
dr[0]="abcd";
dr[1]="xyz";
}
instead of using for loop can i update hole column in single time.
thanks in advance
to update it i am using foreach loop an updating very row with same value.
buts its too slow.is there any way to update all the rows in single.
foreach(datarow dr in dt.rows)
{
dr[0]="abcd";
dr[1]="xyz";
}
instead of using for loop can i update hole column in single time.
thanks in advance