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