Ejemplo n.º 1
0
 /// <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);
 }
Ejemplo n.º 2
0
 /// <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);
 }