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

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

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