I have a DataTable which has 4 columns. I want to change the 3rd column's value as "0". Below is my DataTable.
ID Name Value Type
---- ---- ----- -----
1 Sam 250 2
2 Rai 324 3
3 Tim 985 8
My Desired Result should be like below:
ID Name Value Type
---- ---- ----- ------
1 Sam 0 2
2 Rai 0 3
3 Tim 0 8
How to achieve this without looping? Any suggestions please.