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