I have a list of object
List results;
so i added the list to the datagridview
dataGridView.DataSource =
One easy way is to use new BindingSource(object dataSource, "")
This will update the binding source and thus will update the table
For example:
dataGridView.DataSource = new BindingSource(phase3Results, "");