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

BranchIfEqual() 공개 메소드

Branches to the given label if the two values on the top of the stack are equal.
public BranchIfEqual ( ILLabel label ) : void
label ILLabel The label to branch to.
리턴 void
        public override void BranchIfEqual(ILLabel label)
        {
            BranchCore(label, 0x3B, ComparisonOperator.Equal);
        }
DynamicILGenerator