I've noticed that when "giving focus" back to your main thread, when invoking from another thread, you can either invoke "this" or the control that you would like to, well invoke. I've noticed this doesn't matter when giving control back, so can anyone explain why I would invoke a control over the main thread? Does it matter, or is the main thread being implicitly invoked?
Would,
this.Invoke(InvokedMethod,args)
be different from
button1.Invoke(InvokedMethod,args)
When button1 is on my main form.