N
Nobody
1) If I call Control.BeginInvoke() several times on a worker thread, are the
delegates guaranteed to execute in the order I submitted the request?
2) Control.BeginInvoke() does not have an "on complete" callback parameter,
therefore is EndInvoke() necessary? My understanding is that
Delegate.BeginInvoke() will leak data if I do not call Delegate.EndInvoke(),
is the same true for Control.BeginInvoke()?
Thanks
delegates guaranteed to execute in the order I submitted the request?
2) Control.BeginInvoke() does not have an "on complete" callback parameter,
therefore is EndInvoke() necessary? My understanding is that
Delegate.BeginInvoke() will leak data if I do not call Delegate.EndInvoke(),
is the same true for Control.BeginInvoke()?
Thanks