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)
6372
if (tme.
_args
is null || tme.
_args
.Length < 1)
6376
else if (tme.
_args
.Length < 2)
6378
handler(tme.
_args
[0], EventArgs.Empty);
6382
handler(tme.
_args
[0], (EventArgs)tme.
_args
[1]!);
6395
Debug.Assert(tme.
_args
!.Length == 1, "Arguments are wrong for WaitCallback");
6396
waitCallback(tme.
_args
[0]);
6400
Debug.Assert(tme.
_args
!.Length == 1, "Arguments are wrong for SendOrPostCallback");
6401
sendOrPostCallback(tme.
_args
[0]);
6405
tme._retVal = tme._method!.DynamicInvoke(tme.
_args
);