Skip to content

Instantly share code, notes, and snippets.

@peteraritchie
Created February 22, 2012 16:08
Show Gist options
  • Save peteraritchie/1885798 to your computer and use it in GitHub Desktop.
Save peteraritchie/1885798 to your computer and use it in GitHub Desktop.
supersimpletpl
Task.Factory.StartNew(() => Console.Write("started working..."))
.ContinueWith(_ => Console.WriteLine("doing something else..."))
.ContinueWith(_ => Console.WriteLine("done!"));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment