1、创建
Stack stack = new Stack();
2、压栈
stack.Push(value);
3、出栈
stack.Pop();
4、数量
stack.Count
5、首栈
stack.Peek();