I am making an application in silverlight 3.0 In that application i want to implement a functionality like : i have to maintain collection of values. i am continuously adding values in that collection from one end and removing values from another end.Means suppose i want to maintain a collection of 3000 values. If i am adding one value in that collection, then one value should be removed so that i have only collection of 3000 values.I want to use “Circular queue” So is there any functionality in silverlight of circular queue? Or is there any efficient logic instead of circular queue? Please help me .Thanks in advance.
Share
You might want to use built-in class
Queueand implement a wrapper around it: