Results 1 to 5 of 5

Thread: list implementation

  1. #1

    Thread Starter
    Member
    Join Date
    Jun 2006
    Posts
    61

    list implementation

    hi there!
    is there any class in the compact framework that implements FIFO lists?

  2. #2
    Fanatic Member Strider's Avatar
    Join Date
    Sep 2004
    Location
    Dublin, Ireland
    Posts
    612

    Re: list implementation

    doesnt a queue not work for FIFO....

    Dim l_myQ as New Queue
    l_myQ.enqueue("someobject")
    Barry


    Visual Studio .NET 2008/Visual Studio .NET 2005/Visual Studio .NET 2003
    .NET Framework 3.0 2.0 1.1/ASP.Net 3.0 2.0 1.1/Compact Framework 1.0

    SQL Server 2005/2000/SQL Server CE 2.0


    If you like, rate this post

    Compact Framework for Beginners

  3. #3

    Thread Starter
    Member
    Join Date
    Jun 2006
    Posts
    61

    Re: list implementation

    it would but might have some exceptions (dont know yet, those things come during the implementation) from time to time and will need to add in the middle of the list, or delete from the middle. Anyway, the FIFO part is not really the issue. I am just looking for a class that implements lists, or queues in that matter. Is there any in the compact framework?

  4. #4
    Fanatic Member Strider's Avatar
    Join Date
    Sep 2004
    Location
    Dublin, Ireland
    Posts
    612

    Re: list implementation

    how about using an arraylist

    http://abstractvb.com/code.asp?A=1030
    Barry


    Visual Studio .NET 2008/Visual Studio .NET 2005/Visual Studio .NET 2003
    .NET Framework 3.0 2.0 1.1/ASP.Net 3.0 2.0 1.1/Compact Framework 1.0

    SQL Server 2005/2000/SQL Server CE 2.0


    If you like, rate this post

    Compact Framework for Beginners

  5. #5

    Thread Starter
    Member
    Join Date
    Jun 2006
    Posts
    61

    Re: list implementation

    cool.thanks. will try to work with arraylists.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width