I seem to be stuck trying to convert a collection of ListBox items to Enum.
Here is my code
 ChannelCodeType[] ChannelCodes = lbSearch.SelectedItems;
public enum ChannelCodeType {
        /// <remarks/>
        XYZ1,
        /// <remarks/>
        XYZ1_KIDS,
        /// <remarks/>
        XYZ1_PRIME,
        /// <remarks/>
        XYZ13,
        /// <remarks/>
        XYZ14,
    }
I am trying to pass the values (selecteditems) back to the ChannelCodes
 
     
    