private string GetSelectionList()
        {
            string           selections = string.Empty;
            DialogListDialog dlg        = new DialogListDialog(mainForm);

            if (dlg.ShowDialog(this) == DialogResult.OK)
            {
                selections = dlg.Selections;
            }
            return(selections);
        }
 private string GetSelectionList()
 {
     string selections = string.Empty;
     DialogListDialog dlg = new DialogListDialog(mainForm);
     if (dlg.ShowDialog(this) == DialogResult.OK)
     {
         selections = dlg.Selections;
     }
     return selections;
 }