Convert Queue To array in CSharp
Description
The following code shows how to convert Queue To array.
Example
using System;/* ww w. j a v a 2 s . c om*/
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);
}
string[] arr = numbers.ToArray();
foreach( string number in arr)
{
Console.WriteLine(number);
}
}
}
The code above generates the following result.