6 references to _args
System.Private.CoreLib (6)
src\libraries\System.Private.CoreLib\src\System\Reflection\ConstructorInvoker.cs (1)
282
return InvokeDirectByRefWithFewArgs(((Span<object?>)stackStorage.
_args
).Slice(0, _argCount));
src\libraries\System.Private.CoreLib\src\System\Reflection\MethodBase.cs (4)
204
_args
[0] = obj1;
205
_args
[1] = obj2;
206
_args
[2] = obj3;
207
_args
[3] = obj4;
src\libraries\System.Private.CoreLib\src\System\Reflection\MethodInvoker.cs (1)
335
return InvokeDirectByRefWithFewArgs(obj, ((Span<object?>)stackStorage.
_args
).Slice(0, _argCount));