1 write to _args
System.Windows.Forms (1)
System\Windows\Forms\Control.ThreadMethodEntry.cs (1)
42
_args
= args;
11 references to _args
System.Windows.Forms (11)
System\Windows\Forms\Control.cs (11)
6148
if (tme.
_args
is null || tme.
_args
.Length < 1)
6152
else if (tme.
_args
.Length < 2)
6154
handler(tme.
_args
[0], EventArgs.Empty);
6158
handler(tme.
_args
[0], (EventArgs)tme.
_args
[1]!);
6171
Debug.Assert(tme.
_args
!.Length == 1, "Arguments are wrong for WaitCallback");
6172
waitCallback(tme.
_args
[0]);
6176
Debug.Assert(tme.
_args
!.Length == 1, "Arguments are wrong for SendOrPostCallback");
6177
sendOrPostCallback(tme.
_args
[0]);
6181
tme._retVal = tme._method!.DynamicInvoke(tme.
_args
);