If I Invoke a method onto the UI Thread is it searilized by the Windows message queue and subsequently doesn't need to be re-entrant?
private void CalledFromWorkerThread()
{
//changed from 'InvokeRequired' Anti-Pattern
this.Invoke((Action) (() => _counter++; /* Is this ok? */ ));
}
Clarification: It is only the UI thread that will be accessing _counter.