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)
6018
if (tme.
_args
is null || tme.
_args
.Length < 1)
6022
else if (tme.
_args
.Length < 2)
6024
handler(tme.
_args
[0], EventArgs.Empty);
6028
handler(tme.
_args
[0], (EventArgs)tme.
_args
[1]!);
6041
Debug.Assert(tme.
_args
!.Length == 1, "Arguments are wrong for WaitCallback");
6042
waitCallback(tme.
_args
[0]);
6046
Debug.Assert(tme.
_args
!.Length == 1, "Arguments are wrong for SendOrPostCallback");
6047
sendOrPostCallback(tme.
_args
[0]);
6051
tme._retVal = tme._method!.DynamicInvoke(tme.
_args
);