I want to find a better way of populating a generic list from a checkedlistbox in c#.
I can do the following easily enough:
List<string> selectedFields = new List<string>();
foreach (object a in chkDFMFieldList.CheckedItems) {
selectedFields.Add(a.ToString());
}
There must be a more elagent method to cast the CheckedItems collection to my list.