5 overrides of CreateInstanceWithFewArgs
System.Private.CoreLib (2)
System\Reflection\Runtime\MethodInfos\CustomMethodInvoker.cs (1)
74
protected internal sealed override object
CreateInstanceWithFewArgs
(Span<object?> arguments)
System\Reflection\Runtime\MethodInfos\OpenMethodInvoker.cs (1)
32
protected internal sealed override object
CreateInstanceWithFewArgs
(Span<object?> arguments)
System.Private.Reflection.Execution (3)
Internal\Reflection\Execution\MethodInvokers\InstanceMethodInvoker.cs (1)
114
protected sealed override object
CreateInstanceWithFewArgs
(Span<object?> arguments)
Internal\Reflection\Execution\MethodInvokers\StaticMethodInvoker.cs (1)
66
protected sealed override object
CreateInstanceWithFewArgs
(Span<object?> arguments)
Internal\Reflection\Execution\MethodInvokers\VirtualMethodInvoker.cs (1)
125
protected sealed override object
CreateInstanceWithFewArgs
(Span<object?> arguments)
5 references to CreateInstanceWithFewArgs
System.Private.CoreLib (5)
System\Reflection\ConstructorInvoker.cs (5)
43
object result = _methodBaseInvoker.
CreateInstanceWithFewArgs
(default);
56
object result = _methodBaseInvoker.
CreateInstanceWithFewArgs
(new Span<object?>(ref arg1));
72
object result = _methodBaseInvoker.
CreateInstanceWithFewArgs
(((Span<object?>)argStorage._args).Slice(0, 2));
89
object result = _methodBaseInvoker.
CreateInstanceWithFewArgs
(((Span<object?>)argStorage._args).Slice(0, 3));
107
object result = _methodBaseInvoker.
CreateInstanceWithFewArgs
(((Span<object?>)argStorage._args).Slice(0, 4));