Check if a Sttack contains an element in CSharp
Description
The following code shows how to check if a Sttack contains an element.
Example
using System;//from w w w. j av a 2s . 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");
Console.WriteLine(numbers.Contains("four"));
}
}
The code above generates the following result.