10 references to DynamicMethod
System.AddIn (1)
System\Addin\Hosting\AddInActivator.cs (1)
469
DynamicMethod invoker = new
DynamicMethod
(targetType.Name + "_ConstructorInvoker", // name, only usefult for debugging
System.Core (1)
Microsoft\Scripting\Compiler\LambdaCompiler.cs (1)
93
var method = new
DynamicMethod
(lambda.Name ?? "lambda_method", lambda.ReturnType, parameterTypes, true);
System.Data.Entity (1)
System\Data\Metadata\Edm\LightweightCodeGenerator.cs (1)
594
return new
DynamicMethod
(name, returnType, parameterTypes, true);
System.Data.Linq (4)
Mapping\Accessors.cs (3)
29
DynamicMethod mget = new
DynamicMethod
(
41
DynamicMethod mset = new
DynamicMethod
(
106
DynamicMethod mset = new
DynamicMethod
(
SqlClient\Reader\ObjectReaderCompiler.cs (1)
281
DynamicMethod dm = new
DynamicMethod
(
System.Data.Services (3)
System\Data\Services\Providers\ObjectContextServiceProvider.cs (1)
2356
System.Reflection.Emit.DynamicMethod readerMethod = new System.Reflection.Emit.
DynamicMethod
("queryable_reader", typeof(IQueryable), parameterTypes, false);
System\Data\Services\Providers\ReflectionServiceProvider.cs (1)
319
System.Reflection.Emit.DynamicMethod readerMethod = new System.Reflection.Emit.
DynamicMethod
("queryable_reader", typeof(IQueryable), parameterTypes, false);
System\Data\Services\WebUtil.cs (1)
589
System.Reflection.Emit.DynamicMethod method = new System.Reflection.Emit.
DynamicMethod
("invoke_constructor", targetType, Type.EmptyTypes, false);