Ejemplo n.º 1
0
 /// <summary>
 /// Converts a pointer or reference to a value on the stack into a TypedReference of the given type.
 ///
 /// TypedReferences can be used with ReferenceAnyType and ReferenceAnyValue to pass arbitrary types as parameters.
 /// </summary>
 public Emit MakeReferenceAny(Type type)
 {
     InnerEmit.MakeReferenceAny(type);
     return(this);
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Converts a pointer or reference to a value on the stack into a TypedReference of the given type.
 ///
 /// TypedReferences can be used with ReferenceAnyType and ReferenceAnyValue to pass arbitrary types as parameters.
 /// </summary>
 public Emit MakeReferenceAny <Type>()
 {
     InnerEmit.MakeReferenceAny <Type>();
     return(this);
 }