26 references to _args
System.Private.CoreLib (26)
System\Reflection\ConstructorInvoker.cs (12)
70argStorage._args[0] = arg1; 71argStorage._args[1] = arg2; 72object result = _methodBaseInvoker.CreateInstanceWithFewArgs(((Span<object?>)argStorage._args).Slice(0, 2)); 86argStorage._args[0] = arg1; 87argStorage._args[1] = arg2; 88argStorage._args[2] = arg3; 89object result = _methodBaseInvoker.CreateInstanceWithFewArgs(((Span<object?>)argStorage._args).Slice(0, 3)); 103argStorage._args[0] = arg1; 104argStorage._args[1] = arg2; 105argStorage._args[2] = arg3; 106argStorage._args[3] = arg4; 107object result = _methodBaseInvoker.CreateInstanceWithFewArgs(((Span<object?>)argStorage._args).Slice(0, 4));
System\Reflection\DynamicInvokeInfo.cs (2)
496Span<object?> copyOfParameters = ((Span<object?>)argStorage._args).Slice(0, _argumentCount); 528Span<object?> copyOfParameters = ((Span<object?>)argStorage._args).Slice(0, _argumentCount);
System\Reflection\MethodInvoker.cs (12)
84argStorage._args[0] = arg1; 85argStorage._args[1] = arg2; 87object? result = _methodBaseInvoker.InvokeDirectWithFewArgs(obj, ((Span<object?>)argStorage._args).Slice(0, 2)); 101argStorage._args[0] = arg1; 102argStorage._args[1] = arg2; 103argStorage._args[2] = arg3; 105object? result = _methodBaseInvoker.InvokeDirectWithFewArgs(obj, ((Span<object?>)argStorage._args).Slice(0, 3)); 119argStorage._args[0] = arg1; 120argStorage._args[1] = arg2; 121argStorage._args[2] = arg3; 122argStorage._args[3] = arg4; 124object? result = _methodBaseInvoker.InvokeDirectWithFewArgs(obj, ((Span<object?>)argStorage._args).Slice(0, 4));