So I have a dictionary (string, int> and I need to remove any entries in the dictionary that have duplicate values, except for the first entry So if you have;
dictionary<bob, 1>
dictionary<sam, 2>
dictionary<jack, 1>
dictionary<billy, 1>
Then both jack and billy would need to be removed while bob and sam would be kept.
Thank you for any assistance.