Skip to content

Instantly share code, notes, and snippets.

@alexyork
Created November 29, 2011 14:58
Show Gist options
  • Save alexyork/1405081 to your computer and use it in GitHub Desktop.
Save alexyork/1405081 to your computer and use it in GitHub Desktop.
Running code in Parallel in C#
// Running code in Parallel in C#
// Sequential
DoSomething();
DoSomethingElse();
DoAnotherThing();
// Parallel
Parallel.Invoke(
DoSomething,
DoSomethingElse,
DoAnotherThing
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment