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 the first value.
 /// </summary>
 public Emit BranchIfLess(string name)
 {
     InnerEmit.BranchIfLess(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 the first value.
 /// </summary>
 public Emit BranchIfLess(Label label)
 {
     InnerEmit.BranchIfLess(label);
     return(this);
 }