I have created a data table. It has 3 column Product_id, Product_name and Product_price
Datatable tabl
You can find that row with
DataRow row = table.Select("Product_id=2").FirstOrDefault();
and update it
row["Product_name"] = "cde";