Remove all objects from the Stack in CSharp
Description
The following code shows how to remove all objects from the Stack.
Example
using System;//from www . j ava 2 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 number in numbers )
{
Console.WriteLine(number);
}
numbers.Clear();
Console.WriteLine(numbers.Count);
}
}
The code above generates the following result.