using System.Collections;
public static void Main()
Stack MyStack = new Stack();
Console.WriteLine("Stack After Pushing items:");
Console.WriteLine("Stack After pop: ");
Console.WriteLine("5 Exists in Stack? : "+MyStack.Contains(5));
Console.WriteLine("Top Item of stack is : "+MyStack.Peek());
public static void PrintStack(Stack MyStack)
foreach(var item in MyStack)