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

BranchIfNotEqual() 공개 메소드

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