B
Brian Reed
I have a need for a queue like data structure that allows me to push onto
the front of the structure and remove from the back end. The
System.Collections.Queue will only let you push on the back and remove from
the front. Is there an existing collection or object in the .NET Framework
that I could use for this functionality? I would like to avoid having to
write one myself if possible.
the front of the structure and remove from the back end. The
System.Collections.Queue will only let you push on the back and remove from
the front. Is there an existing collection or object in the .NET Framework
that I could use for this functionality? I would like to avoid having to
write one myself if possible.