How to work with "FIFO" in C# .NET?

Rella picture Rella · Jun 3, 2010 · Viewed 73.2k times · Source

Is there a standard collection in .NET that implements a FIFO stack?

Answer

Dave Markle picture Dave Markle · Jun 3, 2010

FIFO means first-in-first-out. The data structure you're looking for is called a Queue.