I need a ring list dictionary that can store key and item. Capacity = 50
and when I add #51
the first item must be removed. Basically it must be a dictionary that behaves like a ring list.
Is there something in .NET Framework that can do that ? Or do I have to write it by myself ?