Example #1
0
 public void Push(string inf)
 {
     top = new MyNode(top, inf);
     count++;
 }
Example #2
0
 public MyStack()
 {
     top = null;
 }