Ejemplo n.º 1
0
 /// <summary>
 /// <para>Pops one argument from the stack, branches to the label with the given name if the value is false.</para>
 /// <para>A value is false if it is zero or null.</para>
 /// </summary>
 public Emit BranchIfFalse(string name)
 {
     InnerEmit.BranchIfFalse(name);
     return(this);
 }
Ejemplo n.º 2
0
 /// <summary>
 /// <para>Pops one argument from the stack, branches to the given label if the value is false.</para>
 /// <para>A value is false if it is zero or null.</para>
 /// </summary>
 public Emit BranchIfFalse(Label label)
 {
     InnerEmit.BranchIfFalse(label);
     return(this);
 }