Jurassic.Compiler.DynamicILGenerator.BranchIfLessThanOrEqual C# (CSharp) 메소드

BranchIfLessThanOrEqual() 공개 메소드

Branches to the given label if the first value on the stack is less than or equal to the second value on the stack.
public BranchIfLessThanOrEqual ( ILLabel label ) : void
label ILLabel The label to branch to.
리턴 void
        public override void BranchIfLessThanOrEqual(ILLabel label)
        {
            BranchCore(label, 0x3E, ComparisonOperator.LessThanOrEqual);
        }
DynamicILGenerator