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)
6057
if (tme.
_args
is null || tme.
_args
.Length < 1)
6061
else if (tme.
_args
.Length < 2)
6063
handler(tme.
_args
[0], EventArgs.Empty);
6067
handler(tme.
_args
[0], (EventArgs)tme.
_args
[1]!);
6080
Debug.Assert(tme.
_args
!.Length == 1, "Arguments are wrong for WaitCallback");
6081
waitCallback(tme.
_args
[0]);
6085
Debug.Assert(tme.
_args
!.Length == 1, "Arguments are wrong for SendOrPostCallback");
6086
sendOrPostCallback(tme.
_args
[0]);
6090
tme._retVal = tme._method!.DynamicInvoke(tme.
_args
);