Copy the Stack to an Array in CSharp
Description
The following code shows how to copy the Stack to an Array.
Example
/* w w w . j a v a 2s.c o m*/
using System;
using System.Collections.Generic;
class Example
{
public static void Main()
{
Stack<string> numbers = new Stack<string>();
numbers.Push("one");
numbers.Push("two");
numbers.Push("three");
numbers.Push("four");
numbers.Push("five");
string[] array2 = new string[numbers.Count * 2];
numbers.CopyTo(array2, numbers.Count);
foreach(string s in array2){
Console.WriteLine(s);
}
}
}
The code above generates the following result.