How can I check if a Queue is empty?

MoShe picture MoShe · Nov 1, 2011 · Viewed 69.5k times · Source

In C#, how can I check if a Queue is empty?

I want to iterate through the Queue's elements, and I need to know when to stop. How can I accomplish this?

Answer

Jon Skeet picture Jon Skeet · Nov 1, 2011

Assuming you mean Queue<T> you could just use:

if (queue.Count != 0)

But why bother? Just iterate over it anyway, and if it's empty you'll never get into the body:

Queue<string> queue = new Queue<string>();

// It's fine to use foreach...
foreach (string x in queue)
{
    // We just won't get in here...
}