Ejemplo n.º 1
0
 /// <summary>
 /// Pops a value, an index, and a reference to an array off the stack.  Places the given value into the given array at the given index.
 /// </summary>
 public Emit StoreElement <ElementType>()
 {
     InnerEmit.StoreElement <ElementType>();
     return(this);
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Pops a value, an index, and a reference to an array off the stack.  Places the given value into the given array at the given index.
 /// </summary>
 public Emit StoreElement(Type elementType)
 {
     InnerEmit.StoreElement(elementType);
     return(this);
 }