Skip to content

Instantly share code, notes, and snippets.

@DexterHaslem
Created November 12, 2013 18:09
Show Gist options
  • Save DexterHaslem/7435804 to your computer and use it in GitHub Desktop.
Save DexterHaslem/7435804 to your computer and use it in GitHub Desktop.
int x = 123;
Action printX = new Action(() => Console.WriteLine(x));
x = 456;
printX();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment