Ejemplo n.º 1
0
 /// <summary>
 /// Pushes the size of the given value type onto the stack.
 /// </summary>
 public Emit SizeOf <ValueType>()
     where ValueType : struct
 {
     InnerEmit.SizeOf <ValueType>();
     return(this);
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Pushes the size of the given value type onto the stack.
 /// </summary>
 public Emit SizeOf(Type valueType)
 {
     InnerEmit.SizeOf(valueType);
     return(this);
 }