To create DataRow on the DataTable:
DataTable table = new DataTable(); DataRow row = table.NewRow(); row.valueWantToChange = 200; table.Rows.Add(row);
To enable this, make sure you have System.Data.DataSetExtension on your project reference.
Discover more about Jun Kim
To create DataRow on the DataTable:
DataTable table = new DataTable(); DataRow row = table.NewRow(); row.valueWantToChange = 200; table.Rows.Add(row);
To enable this, make sure you have System.Data.DataSetExtension on your project reference.