Skip to content

Instantly share code, notes, and snippets.

@peteraritchie
Created October 27, 2012 17:04
Show Gist options
  • Save peteraritchie/3965337 to your computer and use it in GitHub Desktop.
Save peteraritchie/3965337 to your computer and use it in GitHub Desktop.
synchronizeInvoke.BeginInvoke(() => DoStuff(x, y));
synchronizeInvoke.BeginInvoke((x1, y1) => DoStuff(x1, y1), x, y);
synchronizeInvoke.BeginInvoke(DoStuff, x, y);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment