/// <summary> /// Pops two arguments from the stack, branches to the label with the given name if the second value is less than or equal to the first value. /// </summary> public Emit BranchIfLessOrEqual(string name) { InnerEmit.BranchIfLessOrEqual(name); return(this); }
/// <summary> /// Pops two arguments from the stack, branches to the given label if the second value is less than or equal to the first value. /// </summary> public Emit BranchIfLessOrEqual(Label label) { InnerEmit.BranchIfLessOrEqual(label); return(this); }