Create a Queue from another collection in CSharp
Description
The following code shows how to create a Queue from another collection.
Example
//from w w w.j a va 2 s . c o m
using System;
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");
Queue<string> queueCopy = new Queue<string>(numbers.ToArray());
foreach( string number in queueCopy )
{
Console.WriteLine(number);
}
}
}
The code above generates the following result.