Example #1
0
        public void Compute(char @operator, int operand)
        {
            // Create command operation and execute it
            Command command = new CalculatorCommand(
                calculator, @operator, operand);

            command.Execute();
            // Add command to undo list
            commands.Add(command);
            current++;
        }
Example #2
0
 public void Compute(char @operator, int operand)
 {
     // Create command operation and execute it
     Command command = new CalculatorCommand(
     calculator, @operator, operand);
     command.Execute();
     // Add command to undo list
     commands.Add(command);
     current++;
 }