I'm receiving this messaage;
Unable to cast object of type 'System.String' to type 'main.Entitys.Department'.
for this piece of code;
return ((Department)department_ComboBox.SelectedItem).ToInt();
I have a combobox with many Department objects within it, and i'm trying to retrieve the ID of the selected item using this method within the Department class;
public int ToInt()
{
return dID;
}
I don't get why it's saying it can't cast a string object when I'm trying to return an int?!