예제 #1
0
 /// <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);
 }
예제 #2
0
 /// <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);
 }