hi there!
is there any class in the compact framework that implements FIFO lists?
Printable View
hi there!
is there any class in the compact framework that implements FIFO lists?
doesnt a queue not work for FIFO....
Dim l_myQ as New Queue
l_myQ.enqueue("someobject")
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?
how about using an arraylist
http://abstractvb.com/code.asp?A=1030
cool.thanks. will try to work with arraylists.