I'm having some trouble with something that I'm sure has an easy workaround.
I have different objects from a class which are bind to a combobox.
MyClass myclassObj = new MyClass();
bindingSource1.DataSource = myclassObj.myList;
combobox1.DataSource = bindingSource1;
The problem with this is that my ToString() override prints out a property called "name". Now, my objects sometimes have the same names, but other different properties, which causes my combobox to appear to have duplicates (although they're different objects).
My question is, is there a way to hide these duplicate names?