示例#1
0
 public PostfixStack AddOperation(Operation operation) =>
 new PostfixStack(this.items.Append(EquationItem.Operation(operation)));
示例#2
0
 public PostfixStack AddValue(int value) =>
 new PostfixStack(this.items.Append(EquationItem.Value(value)));