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