예제 #1
0
 /// <summary>
 /// Pops a pointer from the stack and pushes the value (of the given type) at that address onto the stack.
 /// </summary>
 public Emit LoadIndirect <Type>(bool isVolatile = false, int?unaligned = null)
 {
     InnerEmit.LoadIndirect <Type>(isVolatile, unaligned);
     return(this);
 }