csharp datagridview clear all rows

Code Example - csharp datagridview clear all rows

                
                        dataGridView1.Rows.Clear();
dataGridView1.Refresh();
                    
                
 

csharp datagridview rows clear not working

                        
                                // If "dataGridView1.Rows.Clear();" Not work Use the Following
do
{
   foreach (DataGridViewRow row in dataGridViewError.Rows)
   {
      try
      {
        dataGridViewError.Rows.Remove(row);
      }
      catch (Exception) { }
   }
} while (dat