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

Branch() 공개 메소드

Unconditionally branches to the given label.
public Branch ( ILLabel label ) : void
label ILLabel The label to branch to.
리턴 void
        public override void Branch(ILLabel label)
        {
            BranchCore(label, 0x38);
        }
DynamicILGenerator