Example #1
0
 public void EmitNewobj(IConstructorInfo constructor)
 {
     OpCodes.AddCallInstruction(constructor, "newobj");
 }
Example #2
0
 public void EmitConstructorCall(IConstructorInfo constructorInfo)
 {
     OpCodes.AddCallInstruction(constructorInfo, "call");
 }
Example #3
0
 public void EmitLdvirtftn(IMethodInfo method)
 {
     OpCodes.AddCallInstruction(method, "ldvirtftn");
 }
Example #4
0
 public void EmitCallvirt(IMethodInfo methodInfo)
 {
     OpCodes.AddCallInstruction(methodInfo, "callvirt");
 }