in

Axvius Community Server

Browse by Tags

  • 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 = new LinkedList <T>(); } #endregion #region...
    Posted to Parker's DevEd Blog (Weblog) by Administrator on 11-26-2007
  • RollingList<T>

    Have you ever wanted to create a rolling list? Something similar to a queue but with a size limitation that kicks out the oldest element and brings in the new. I've been looking for a way to do this for a while now, and finally decided to just create my own. It actually was very simplistic using...
    Posted to Parker's DevEd Blog (Weblog) by Parker.Hillius on 09-10-2007
Page 1 of 1 (2 items)
2007 Axvius
Powered by Community Server (Non-Commercial Edition), by Telligent Systems