I'm looking to add a "recently opened" functionality to my application, and was wondering if there was a simple built in way to do lists that "overflow". By this I mean, when you add an element beyond the capacity of the list, all the items are shifted.
Code example of desired functionality (obviously its not true, the list would actually contain A,B,C):
List<string> list = new List<string>();
//if Overflow was 2
list.Add("A");
list.Add("B");
//List now contains A,B
list.Add("C");
//List now contains B,C
Sorry for the simple question. The problem itself is obvious to solve (intail plan was to inherit from List), I just don't like having to re-invent the wheel and confuse future programmers with custom objects when the language or framework has that functionality.
List<T>or any of the other data structures are .NET data structures, not C# data structures, but no, .NET has no such built-in data structure that will do all of that automatically. You can, however, use either aQueue<T>or aLinkedList<T>and some extra code to remove extra items once you reach the limit. – Lasse V. Karlsen Nov 25 '11 at 20:09