I would like to know if there is any overhead incurred through the use of anonymous methods when creating a Background worker.
for example:
public void S
I was testing this out the other day (via use of the StopWatch class). As far as I could tell there was no noticeable difference in performance between invoking a method directly...
SomeMethod();
...or via an anonymous method...
() => SomeMethod();