I have CheckListBox(Multi Select ListBox).
My CheckListBox has,
MyMultiListComboBox.DataSource = context.GetValues();
MyMultiListComboBox.DisplayMember = "Name";
MyMultiListComboBox.ValueMember = "Id";
I try to get selected multi values like below,
var Values = MyMultiListComboBox.SelectedValue;
However i get only first selected value.How can i get all selected values in WinForms c# ?
Any help will be appreciated .
Thanks.
context.GetValues()returns?List<Customer>or something else?