Skip to content

Instantly share code, notes, and snippets.

@PeterJCLaw
Created July 29, 2011 18:52
Show Gist options
  • Save PeterJCLaw/1114484 to your computer and use it in GitHub Desktop.
Save PeterJCLaw/1114484 to your computer and use it in GitHub Desktop.
public void Do()
{
string boo = "boo";
Thread t = new Thread((x) => { boo = "flame"; });
Console.WriteLine(boo);
// boo
t.Start();
t.Join();
Console.WriteLine(boo);
// flame
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment