Base:
method
CreateDelegate
System.Reflection.MethodInfo.CreateDelegate(System.Type, System.Object)
8 references to CreateDelegate
Microsoft.Extensions.DependencyInjection (1)
ServiceLookup\ILEmit\ILEmitResolverBuilder.cs (1)
128Lambda = (Func<ServiceProviderEngineScope, object?>)dynamicMethod.CreateDelegate(typeof(Func<ServiceProviderEngineScope, object?>), runtimeContext),
Microsoft.ML.Data (2)
Utils\ApiUtils.cs (2)
171return mb.CreateDelegate(typeof(Poke<TRow, TValue>), null); 186return mb.CreateDelegate(typeof(Poke<TRow, TValue>), null);
Microsoft.ML.Transforms (1)
Expression\MethodGenerator.cs (1)
42var del = _method.CreateDelegate(delegateType, null);
System.Private.CoreLib (4)
src\libraries\System.Private.CoreLib\src\System\Reflection\InvokerEmitUtil.cs (3)
83return (InvokeFunc_Obj4Args)dm.CreateDelegate(typeof(InvokeFunc_Obj4Args), target: null); 140return (InvokeFunc_ObjSpanArgs)dm.CreateDelegate(typeof(InvokeFunc_ObjSpanArgs), target: null); 196return (InvokeFunc_RefArgs)dm.CreateDelegate(typeof(InvokeFunc_RefArgs), target: null);
src\System\Reflection\Emit\DynamicMethod.CoreCLR.cs (1)
45CreateDelegate(delegateType, target: null);