In the .Net BCL is there a collection data structure similar to list that has a maximum capacity, say configured to 100 items, which when item 101 is added the original firs
There's not one available, but it should be easy to write a function to accomplish this with an array or collection.