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