예제 #1
0
 /// <summary>
 /// Boxes the given value type on the stack, converting it into a reference.
 /// </summary>
 public Emit Box <ValueType>()
     where ValueType : struct
 {
     InnerEmit.Box <ValueType>();
     return(this);
 }
예제 #2
0
 /// <summary>
 /// Boxes the given value type on the stack, converting it into a reference.
 /// </summary>
 public Emit Box(Type valueType)
 {
     InnerEmit.Box(valueType);
     return(this);
 }