private void exec_calc(CalcMethodType f) { object b = calcStack.Pop(); object a = calcStack.Pop(); StackPush(f(a, b)); }