Hi, I would like to make a score list with only 10 elements. Basically, simple collection which adds the value. If new value is higher than other one it adds one and last one get out. (everyone knows how it looks like :) )
Secondly, I need a list of 5 lastest values that have been changed, something like history panel.
All in all, both are very similar - a list with limited items.
Is there a neat pattern for these? Some cool snippet? I need to use Silverlight for WP7 and the low power consumption solution would be great. Should I make my own collecion? Derive from one or implement interface. Thx in advance.