Parker's DevEd Blog

Musings on all software development technologies, and education involving computer science and fraud investigation

Browse by Tags

All Tags » C# » RollingList (RSS)
Sorry, but there are no more tags available to filter with.
Final RollingList<T>
public class RollingList <T> : ICollection <T> { #region Private Fields private int _capacity; private LinkedList <T> _linkedList; #endregion #region Constructors public RollingList( int capacity) { _capacity = capacity; _linkedList...