Remove all objects from the Queue in CSharp
Description
The following code shows how to remove all objects from the Queue.
Example
using System;//from w w w . j a va2 s. c o m
using System.Collections.Generic;
class Example
{
public static void Main()
{
Queue<string> numbers = new Queue<string>();
numbers.Enqueue("one");
numbers.Enqueue("two");
numbers.Enqueue("three");
numbers.Enqueue("four");
numbers.Enqueue("five");
foreach( string number in numbers )
{
Console.WriteLine(number);
}
numbers.Clear();
Console.WriteLine(numbers.Count);
}
}
The code above generates the following result.