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)
6059
if (tme.
_args
is null || tme.
_args
.Length < 1)
6063
else if (tme.
_args
.Length < 2)
6065
handler(tme.
_args
[0], EventArgs.Empty);
6069
handler(tme.
_args
[0], (EventArgs)tme.
_args
[1]!);
6082
Debug.Assert(tme.
_args
!.Length == 1, "Arguments are wrong for WaitCallback");
6083
waitCallback(tme.
_args
[0]);
6087
Debug.Assert(tme.
_args
!.Length == 1, "Arguments are wrong for SendOrPostCallback");
6088
sendOrPostCallback(tme.
_args
[0]);
6092
tme._retVal = tme._method!.DynamicInvoke(tme.
_args
);