Ejemplo n.º 1
0
 /// <summary>
 /// Expects an instance of the type to be initialized on the stack.
 ///
 /// Initializes all the fields on a value type to null or an appropriate zero value.
 /// </summary>
 public Emit InitializeObject(Type valueType)
 {
     InnerEmit.InitializeObject(valueType);
     return(this);
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Expects an instance of the type to be initialized on the stack.
 ///
 /// Initializes all the fields on a value type to null or an appropriate zero value.
 /// </summary>
 public Emit InitializeObject <ValueType>()
 {
     InnerEmit.InitializeObject <ValueType>();
     return(this);
 }