1 override of EmitCall
mscorlib (1)
system\reflection\emit\dynamicilgenerator.cs (1)
313public override void EmitCall(OpCode opcode, MethodInfo methodInfo, Type[] optionalParameterTypes)
9 references to EmitCall
mscorlib (1)
system\reflection\emit\ilgenerator.cs (1)
494EmitCall(opcode, meth, null);
System.Activities (1)
System\Activities\Debugger\StateManager.cs (1)
672ilGenerator.EmitCall(OpCodes.Call, islandWorkerMethodInfo, null);
System.Core (1)
Microsoft\Scripting\Compiler\LambdaCompiler.Expressions.cs (1)
359_ilg.EmitCall(callOp, mi, args.Map(a => a.Type));
System.Web (2)
Util\FastPropertyAccessor.cs (2)
138il.EmitCall(OpCodes.Callvirt, getterMethodInfo, null); 239il.EmitCall(OpCodes.Callvirt, setterMethodInfo, null);
System.Web.Extensions (4)
UI\WebControls\Dynamic.cs (4)
383gen.EmitCall(OpCodes.Call, ct.GetMethod("get_Default"), null); 388gen.EmitCall(OpCodes.Callvirt, ct.GetMethod("Equals", new Type[] { ft, ft }), null); 408gen.EmitCall(OpCodes.Call, ct.GetMethod("get_Default"), null); 411gen.EmitCall(OpCodes.Callvirt, ct.GetMethod("GetHashCode", new Type[] { ft }), null);