Exemple #1
0
 /// <summary>
 /// Expects a reference to an array and an index on the stack.
 ///
 /// Pops both, and pushes the element in the array at the index onto the stack.
 /// </summary>
 public Emit LoadElement(Type elementType)
 {
     InnerEmit.LoadElement(elementType);
     return(this);
 }
Exemple #2
0
 /// <summary>
 /// Expects a reference to an array and an index on the stack.
 ///
 /// Pops both, and pushes the element in the array at the index onto the stack.
 /// </summary>
 public Emit LoadElement <ElementType>()
 {
     InnerEmit.LoadElement <ElementType>();
     return(this);
 }