I have a class I'm working with:
public sealed class WorkItemType
It ToString is weak (just showing Microsoft.TeamFoundation.WorkItemTracking.Client.WorkItemType ).
Is there a way to override this to show the name WorkItemType ?
Usually I just collected the value in a new class, but I use this for bindings in WPF (I want to have the WorkItemTypes list in the combo box and assign the selected value to the WorkItemType variable.)
I think Iβm out of luck here, but I thought I would ask.
source share