Hello,
Lets say I have a form called MainForm and a control on it: somelabel. In order to access these controls from another thread I have to use Invoke method. e.g:
somelabel.Invoke(...);
However I can also access the label through the form like this:
MainForm.Invoke(...) //Code for manipulating somelabel
Is there any difference between these two snippets in terms of performance or some other technical aspect?