コード例 #1
0
ファイル: MyStack.cs プロジェクト: AlexeyFerum/MyC-SharpCode
 public void Push(string inf)
 {
     top = new MyNode(top, inf);
     count++;
 }
コード例 #2
0
ファイル: MyStack.cs プロジェクト: AlexeyFerum/MyC-SharpCode
 public MyStack()
 {
     top = null;
 }