D
Daniel
Is is possible to remove elements from the middle of a
System.Collections.Queue? For the most part i just use endqueue and dequeue
but there are points where i know that i no longer need certain elements
that could be in the middle of the queue that i would like to clean out of
the queue. however, my queue size is gigabytes large and i cant afford the
time to reallocate the entire queue just to remove a middle element. do i
need to write my own link list sytle queue class or is there a way to just
remove items out of the middle of a System.Collections.Queue?
System.Collections.Queue? For the most part i just use endqueue and dequeue
but there are points where i know that i no longer need certain elements
that could be in the middle of the queue that i would like to clean out of
the queue. however, my queue size is gigabytes large and i cant afford the
time to reallocate the entire queue just to remove a middle element. do i
need to write my own link list sytle queue class or is there a way to just
remove items out of the middle of a System.Collections.Queue?