I am trying to transfer data from a string to a Data View control, could someone demonstrate how this could be done:
private void testing_Click(object sender, E
for (int i = 0; i < taskNames.Count; i++) { dataGridView1.Rows.Add(taskNames[i]); }