Stack Class

Overview

  • Last-in, First-out logic.
  • Acts as a stack of papers on a desk.

Good practice

  • When possible, use the generic version of Stack<T>

Examples

Push and Pop

Stack s = new Stack();
s.Push("Hello");
s.Push("World");
Console.WriteLine(s.Pop() + " " + s.Pop());
 
Stack<string> sg = new Stack<string>();
sg.Push("Hello");
sg.Push("World");
Console.WriteLine(sg.Pop() + " " + sg.Pop());