How to add new row to DataTable
DataRow row = dt.NewRow(); row["agent_fio"] = "Все"; row["id"] = "0"; dt.Rows.Add(row);