Jurassic.Compiler.DynamicILGenerator.Subtract C# (CSharp) Метод

Subtract() публичный Метод

Pops two values from the stack, subtracts the second from the first, then pushes the result to the stack.
public Subtract ( ) : void
Результат void
        public override void Subtract()
        {
            Emit1ByteOpCode(0x59, 2, 1);
            CheckArithmeticOperands(ArithmeticOperator.Subtract);
        }
DynamicILGenerator