示例#1
0
 public void Pop(int n)
 {
     for (var i = 0; i < n; i++)
     {
         _stack.Pop();
     }
 }