//Create the DataTableDataTable dt = new DataTable();//Creating a blank rowDataRow BlankRow = dt.NewRow();//Insert the columnsBlankRow[ "PlantName" ] = Plant;BlankRow[ "Capital"] = Capital;//Insert the row at the desired placedt.Rows.InsertAt ( BlankRow, dt.Rows.Count + 1 );//exception//you can also insert the columns with blank data BlankRow[ "PlantName" ] = "";BlankRow[ "Capital"] = "";