Ejemplo n.º 1
0
 /// <summary>
 /// Unconditionally branches to the given label.
 /// </summary>
 public Emit Branch(Label label)
 {
     InnerEmit.Branch(label);
     return(this);
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Unconditionally branches to the label with the given name.
 /// </summary>
 public Emit Branch(string name)
 {
     InnerEmit.Branch(name);
     return(this);
 }