I have a DataGridView binded to a DataTable (DataTable binded to database). I need to add a DataRow to the DataTable
DataGridView
DataTable
DataRow
This works for me:
var table = new DataTable(); table.Rows.Add();