Create an empty Stack in CSharp
Description
The following code shows how to create an empty Stack.
Example
using System;/*from w w w . j av a2 s .c o m*/
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");
foreach(string s in numbers){
Console.WriteLine(s);
}
}
}
The code above generates the following result.