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…Continue readingC# How to add DataRow Manually