データテーブルを作成しました。Product_id、Product_name、およびProduct_priceの3 つの列があります。
Datatable table= new DataTable("Product");
table.Columns.Add("Product_id", typeof(int));
table.Columns.Add("Product_name", typeof(string));
table.Columns.Add("Product_price", typeof(string));
table.Rows.Add(1, "abc", "100");
table.Rows.Add(2, "xyz", "200");
ここで、インデックスで検索し、その行を更新したいと思います。
たとえば
Product_name 列の値を、Product_id列の値が 2 の "cde"に変更したいと考えています。