this works fine in the following code only if I am still working on the application: and let us say if I need to give a name of this group to show in a dgv for example:
groupOfLists.Add(thisList);
int index = dataGridView1.Rows.Add(); var row = dataGridView1.Rows[index];
foreach (string List in thisList){ row.Cells["Group_No"].Value = groupOfLists.count;
}
Is there a way to keep the saved lists inside the GroupLists even if the application is closed? Please help.