コード例 #1
0
 public ParsingStackElement(Operation value = null, ParsingStackElement next = null)
 {
     this.value = value;
     this.next = next;
 }
コード例 #2
0
 public ParsingStackElement(Operation value = null, ParsingStackElement next = null)
 {
     this.value = value;
     this.next  = next;
 }