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